HTML Entity for North West Arrow and North East Arrow (⤧)

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

What You'll Learn

How to display the north west arrow and north east arrow (⤧) in HTML using named, hexadecimal, decimal, and CSS escape methods. This combined directional symbol pairs north-west and north-east arrows and is useful for navigation UI, maps, and design elements showing dual diagonal directions.

This character is U+2927 (NORTH WEST ARROW AND NORTH EAST ARROW) in the Supplemental Arrows-B block (U+2900–U+297F). Render it with ⤧, ⤧, ⤧, or CSS escape \2927.

⚡ Quick Reference — NW and NE Arrow Entity

Unicode U+2927

Supplemental Arrows-B

Hex Code ⤧

Hexadecimal reference

HTML Code ⤧

Decimal reference

Named Entity ⤧

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2927
Hex code       ⤧
HTML code      ⤧
Named entity   ⤧
CSS code       \2927
Meaning        North west arrow and north east arrow
Related        U+2196 = North west (↖, ↖)
               U+2197 = North east (↗, ↗)
               U+2928 = NE and SE (⤨, ⤨)
Block          Supplemental Arrows-B (U+2900–U+297F)
1

Complete HTML Example

A simple example showing ⤧ using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\2927";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x2927;</p>
<p>Symbol (decimal): &#10535;</p>
<p>Symbol (named): &nwnear;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The north west arrow and north east arrow (⤧) 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 Proceed ⤧ toward north west or north east.
Large glyph
With base arrows ↖ ↗ ⤧
Map legend Dual diagonal ⤧   Single ↖
Numeric refs &#x2927; &#10535; &nwnear; \2927

🧠 How It Works

1

Named Entity

&nwnear; is the HTML named entity for U+2927—the most readable choice when writing directional markup.

HTML markup
2

Hexadecimal Code

&#x2927; uses the Unicode hexadecimal value 2927. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

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

CSS stylesheet
=

Same visual result

All four methods produce: . Unicode U+2927 in Supplemental Arrows-B (U+2900–U+297F).

Use Cases

The north west arrow and north east arrow (⤧) is commonly used in:

🗺 Maps & navigation

Show dual diagonal routes (north west or north east) on maps and signage.

💻 User interfaces

Indicate branching paths, dual-direction controls, or diagonal choice indicators.

📊 Flow diagrams

Technical diagrams where flow splits toward north west or north east.

🎨 Design elements

Directional graphics, icons, and visual design with combined diagonal arrows.

📄 Documentation

Unicode charts, arrow references, and HTML entity tutorials.

🎯 Wayfinding

Legend keys for routes offering north-west or north-east directions.

💡 Best Practices

Do

  • Use &nwnear; for readable directional markup
  • Pair ⤧ with accessible text (e.g. “north west or north east” or aria-label)
  • Distinguish ⤧ from single arrows ↖ and ↗ when meaning matters
  • Use consistent arrow styling across your UI
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse ⤧ (&nwnear;) with ↖ (&nwarr;) or ↗ (&nearr;)
  • Confuse &nwnear; with &nesear; (U+2928, north-east and south-east)
  • Use padded Unicode notation like U+02927—the correct value is U+2927
  • Put CSS escape \2927 in HTML text nodes
  • Use \02927 in CSS—the correct escape is \2927

Key Takeaways

1

Three HTML references plus CSS all render ⤧

&#x2927; &#10535; &nwnear;
2

For CSS stylesheets, use the escape in the content property

\2927
3

Unicode U+2927 — NORTH WEST ARROW AND NORTH EAST ARROW

4

Supplemental Arrows-B block (U+2900–U+297F)

5

&nwnear; is the preferred named entity for readable source markup

❓ Frequently Asked Questions

Use &nwnear; (named), &#x2927; (hex), &#10535; (decimal), or \2927 in CSS content. All produce ⤧.
U+2927 (NORTH WEST ARROW AND NORTH EAST ARROW). Supplemental Arrows-B block (U+2900–U+297F). Hex 2927, decimal 10535. Named entity: &nwnear;.
In navigation UI, maps, directional labels, and design elements where you need a single glyph representing both north-west and north-east diagonal directions—for example, branching routes or dual-path indicators.
HTML references (&#10535;, &#x2927;, or &nwnear;) go directly in markup. The CSS escape \2927 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Yes. &nwnear; is the named HTML entity for U+2927 and is the most readable option in source markup.

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