HTML Entity for North West Arrow to Long Bar (↸)

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

What You'll Learn

How to display the north west arrow to long bar (↸) in HTML using hexadecimal, decimal, and CSS escape methods. This directional symbol shows a north-west arrow pointing toward a long bar and is useful for navigation UI, maps, and design elements that reference horizontal lines or bar targets.

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

⚡ Quick Reference — North West Arrow to Long Bar

Unicode U+21B8

Arrows block

Hex Code ↸

Hexadecimal reference

HTML Code ↸

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21B8
Hex code       ↸
HTML code      ↸
Named entity   (none)
CSS code       \21B8
Meaning        North west arrow to long bar
Related        U+2196 = North west (↖, ↖)
               U+21F1 = NW to corner (⇱)
               U+21B9 = NE 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: "\21B8";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x21b8;</p>
<p>Symbol (decimal): &#8632;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The north west arrow to long bar (↸) 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 Follow the path ↸ toward the horizontal bar above.
Large glyph
With base arrow ↖ ↸
UI label To bar ↸   NW reference ↸
Numeric refs &#x21b8; &#8632; \21B8

🧠 How It Works

1

Hexadecimal Code

&#x21b8; uses the Unicode hexadecimal value 21B8 to display the north-west arrow to long bar symbol.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\21B8 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+21B8 is in the Arrows block (U+2190–U+21FF). There is no named HTML entity.

Use Cases

The north west arrow to long bar (↸) is commonly used in:

🗺 Maps & navigation

Indicate directions toward a horizontal bar or line on maps and signage.

💻 User interfaces

Reference toolbar areas, horizontal dividers, or bar-shaped UI targets.

📊 Flow diagrams

Technical diagrams where flow points toward a long bar or boundary line.

🎨 Design elements

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

📄 Documentation

Unicode charts, arrow references, and HTML entity tutorials.

🎯 Wayfinding

Legend keys for routes pointing toward horizontal reference markers.

💡 Best Practices

Do

  • Use numeric references (&#x21b8; or &#8632;) in HTML for portability
  • Use \21B8 in CSS content when inserting via pseudo-elements
  • Pair ↸ with accessible text (e.g. “to long bar” or aria-label)
  • Distinguish ↸ from plain ↖ (&nwarr;) when the bar reference matters
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse this symbol with the north west double arrow ⇖ (&nwArr;)
  • Put the CSS escape \21B8 directly in HTML text nodes
  • Use padded Unicode notation like U+021B8—the correct value is U+21B8
  • Use \021B8 in CSS—the correct escape is \21B8
  • Rely on the glyph alone for screen-reader users without a text alternative

Key Takeaways

1

Three references render ↸ (no named entity)

&#x21b8; &#8632;
2

For CSS stylesheets, use the escape in the content property

\21B8
3

Unicode U+21B8 — NORTH WEST ARROW TO LONG BAR

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 &#x21b8; (hex), &#8632; (decimal), or \21B8 in CSS content. All produce ↸. There is no named HTML entity.
U+21B8 (NORTH WEST ARROW TO LONG BAR). Arrows block (U+2190–U+21FF). Hex 21b8, decimal 8632.
In navigation UI, maps, directional labels, and design elements where you need to indicate a north-west direction toward a long bar or horizontal reference line.
HTML references (&#8632; or &#x21b8;) go in markup. The CSS escape \21B8 goes in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
No. ↸ is U+21B8 (north west arrow to long bar). The north west double arrow is U+21D6 (⇖, &nwArr;)—a different symbol with a named entity.

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