HTML Entity for North West Arrow to Corner (⇱)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+21F1

What You'll Learn

How to display the north west arrow to corner (⇱) in HTML using hexadecimal, decimal, and CSS escape methods. This directional symbol shows a north-west arrow pointing toward a corner and is useful for navigation UI, maps, and design elements that reference corner directions or page corners.

This character is U+21F1 (NORTH WEST ARROW TO CORNER) in the Arrows block (U+2190–U+21FF). Render it with ⇱, ⇱, or CSS escape \21F1. There is no named HTML entity.

⚡ Quick Reference — North West Arrow to Corner

Unicode U+21F1

Arrows block

Hex Code ⇱

Hexadecimal reference

HTML Code ⇱

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21F1
Hex code       ⇱
HTML code      ⇱
Named entity   (none)
CSS code       \21F1
Meaning        North west arrow to corner
Related        U+2196 = North west (↖, ↖)
               U+21F2 = NE to corner (⇲)
               U+21B8 = NW to long bar (↸)
Block          Arrows (U+2190–U+21FF)
1

Complete HTML Example

A simple example showing ⇱ using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\21F1";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x21f1;</p>
<p>Symbol (decimal): &#8689;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The north west arrow to corner (⇱) is supported in all modern browsers:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See ⇱ in navigation and directional contexts:

Inline text See note ⇱ in the top-left corner of the page.
Large glyph
With base arrow ↖ ⇱
UI label Top-left ⇱   Corner ref ⇱
Numeric refs &#x21f1; &#8689; \21F1

🧠 How It Works

1

Hexadecimal Code

&#x21f1; uses the Unicode hexadecimal value 21F1 to display the north-west arrow to corner symbol.

HTML markup
2

Decimal HTML Code

&#8689; uses the decimal Unicode value 8689 to display the same character.

HTML markup
3

CSS Entity

\21F1 is used in CSS stylesheets, typically in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce: . Unicode U+21F1 is in the Arrows block (U+2190–U+21FF). There is no named HTML entity.

Use Cases

The north west arrow to corner (⇱) is commonly used in:

🗺 Maps & navigation

Indicate directions toward the top-left corner on maps and signage.

💻 User interfaces

Reference page corners, corner panels, or top-left placement in UI labels.

📊 Flow diagrams

Technical diagrams where flow points toward a corner or boundary reference.

🎨 Design elements

Directional graphics, icons, and visual design with corner-pointing arrows.

📄 Documentation

Unicode charts, arrow references, and HTML entity tutorials.

🎯 Wayfinding

Indoor navigation and legend keys for corner-direction indicators.

💡 Best Practices

Do

  • Use numeric references (&#x21f1; or &#8689;) in HTML for portability
  • Use \21F1 in CSS content when inserting via pseudo-elements
  • Pair ⇱ with accessible text (e.g. “top-left corner” or aria-label)
  • Distinguish ⇱ from plain ↖ (&nwarr;) when the corner reference matters
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Put the CSS escape \21F1 directly in HTML text nodes
  • Use padded Unicode notation like U+021F1—the correct value is U+21F1
  • Use \021F1 in CSS—the correct escape is \21F1
  • Confuse ⇱ with ⇲ (north-east arrow to corner)
  • Rely on the glyph alone for screen-reader users without a text alternative

Key Takeaways

1

Three references render ⇱ (no named entity)

&#x21f1; &#8689;
2

For CSS stylesheets, use the escape in the content property

\21F1
3

Unicode U+21F1 — NORTH WEST ARROW TO CORNER

4

Arrows block (U+2190–U+21FF)

5

No named entity—use numeric codes or UTF-8 literal in source files

❓ Frequently Asked Questions

Use &#x21f1; (hex), &#8689; (decimal), or \21F1 in CSS content. All produce ⇱. There is no named HTML entity.
U+21F1 (NORTH WEST ARROW TO CORNER). Arrows block (U+2190–U+21FF). Hex 21f1, decimal 8689.
In navigation UI, maps, directional labels, and design elements where you need to indicate a north-west direction toward a corner—for example, top-left page references or corner wayfinding.
HTML references (&#8689; or &#x21f1;) go in markup. The CSS escape \21F1 goes in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
U+21F1 is not part of the named HTML entity set. Numeric references and CSS escapes are the standard way to render ⇱.

Explore More HTML Entities!

Discover 1500+ HTML character references — arrows, symbols, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful