HTML Entity for North East Double Arrow (⇗)

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

What You'll Learn

How to display the north east double arrow (⇗) in HTML using named, hexadecimal, decimal, and CSS escape methods. This bold double-stroke arrow points up and to the right and is useful for navigation buttons, expand controls, and directional UI where a stronger arrow than ↗ is needed.

This character is U+21D7 (NORTH EAST DOUBLE ARROW) in the Arrows block (U+2190–U+21FF). Render it with ⇗, ⇗, ⇗, or CSS escape \21D7.

⚡ Quick Reference — North East Double Arrow Entity

Unicode U+21D7

Arrows block

Hex Code ⇗

Hexadecimal reference

HTML Code ⇗

Decimal reference

Named Entity ⇗

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21D7
Hex code       ⇗
HTML code      ⇗
Named entity   ⇗
CSS code       \21D7
Meaning        North east double arrow
Related        U+2197 = North east (↗, ↗)
               U+279A = Heavy NE (➚)
               U+21D8 = SE double (⇘, ⇘)
Block          Arrows (U+2190–U+21FF)
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: "\21D7";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x21D7;</p>
<p>Symbol (decimal): &#8663;</p>
<p>Symbol (named): &neArr;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The north east double 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 Expand section ⇗   Open in new tab ⇗
Large glyph
Single vs double ↗ ⇗
Map hint City centre ⇗ 2 km
Numeric refs &#x21D7; &#8663; &neArr; \21D7

🧠 How It Works

1

Named Entity

&neArr; is the HTML named entity for U+21D7—the most readable choice when writing directional markup.

HTML markup
2

Hexadecimal Code

&#x21D7; uses the Unicode hexadecimal value 21D7. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\21D7 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+21D7 in the Arrows block (U+2190–U+21FF).

Use Cases

The north east double arrow (⇗) is commonly used in:

💻 User interfaces

Expand panels, external links, and “open in new window” buttons.

🗺 Maps & navigation

Bold up-right direction on maps, signs, and route instructions.

⌨ Keyboard hints

Document diagonal movement with a stronger arrow than ↗.

🎨 Design elements

Directional icons and graphics needing a double-stroke NE arrow.

📄 Documentation

Unicode charts, arrow references, and HTML entity tutorials.

📊 Reference guides

Compare single (↗), double (⇗), and heavy (➚) NE variants.

💡 Best Practices

Do

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

Don’t

  • Confuse ⇗ (&neArr;) with ↗ (&nearr;)
  • Use padded Unicode notation like U+021D7—the correct value is U+21D7
  • Put CSS escape \21D7 in HTML text nodes
  • Use \021D7 in CSS—the correct escape is \21D7
  • Rely on the glyph alone for screen-reader users without a text alternative

Key Takeaways

1

Three HTML references plus CSS all render ⇗

&#x21D7; &#8663; &neArr;
2

For CSS stylesheets, use the escape in the content property

\21D7
3

Unicode U+21D7 — NORTH EAST DOUBLE ARROW

4

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

5

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

❓ Frequently Asked Questions

Use &neArr; (named), &#x21D7; (hex), &#8663; (decimal), or \21D7 in CSS content. All produce ⇗.
U+21D7 (NORTH EAST DOUBLE ARROW). Arrows block (U+2190–U+21FF). Hex 21D7, decimal 8663. Named entity: &neArr;.
Use ⇗ when you need a bolder double-stroke north-east arrow for emphasis—common in expand controls, external-link buttons, and UI where the single arrow ↗ feels too light.
HTML references (&#8663;, &#x21D7;, or &neArr;) go directly in markup. The CSS escape \21D7 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Yes. &neArr; is the named HTML entity for U+21D7 and is the most readable option in source markup. Note the capital A in neArr.

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