HTML Entity for North East Arrow Hook (⤤)

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

What You'll Learn

How to display the north east arrow hook (⤤) in HTML using named, hexadecimal, decimal, and CSS escape methods. This directional symbol is a north-east arrow with a hook and is useful for navigation UI, maps, and design elements that show curved or returning directional flow.

This character is U+2924 (NORTH EAST ARROW WITH HOOK) in the Supplemental Arrows-B block (U+2900–U+297F). Render it with ⤤, ⤤, ⤤, or CSS escape \2924.

⚡ Quick Reference — North East Arrow Hook Entity

Unicode U+2924

Supplemental Arrows-B

Hex Code ⤤

Hexadecimal reference

HTML Code ⤤

Decimal reference

Named Entity ⤤

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2924
Hex code       ⤤
HTML code      ⤤
Named entity   ⤤
CSS code       \2924
Meaning        North east arrow with hook
Related        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: "\2924";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x2924;</p>
<p>Symbol (decimal): &#10532;</p>
<p>Symbol (named): &nearhk;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The north east arrow hook (⤤) 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 Turn ⤤ at the corner, then continue north east.
Large glyph
With base arrow ↗ ⤤
UI label Return ⤤   Hooked route ⤤
Numeric refs &#x2924; &#10532; &nearhk; \2924

🧠 How It Works

1

Named Entity

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

HTML markup
2

Hexadecimal Code

&#x2924; uses the Unicode hexadecimal value 2924. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\2924 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+2924 in Supplemental Arrows-B (U+2900–U+297F).

Use Cases

The north east arrow hook (⤤) is commonly used in:

🗺 Maps & navigation

Show hooked or curved north-east routes on maps and signage.

💻 User interfaces

Indicate return paths, hooked navigation flows, or curved directional hints.

📊 Flow diagrams

Technical diagrams where direction changes with a hooked north-east path.

🎨 Design elements

Directional graphics, icons, and visual design with hooked arrows.

📄 Documentation

Unicode charts, arrow references, and HTML entity tutorials.

🎯 Wayfinding

Indoor navigation and legend keys for hooked directional routes.

💡 Best Practices

Do

  • Use &nearhk; for readable directional markup
  • Pair ⤤ with accessible text (e.g. “north east hook” or aria-label)
  • Distinguish ⤤ from plain ↗ (&nearr;) when the hook matters
  • Use consistent arrow styling across your UI
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

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

Key Takeaways

1

Three HTML references plus CSS all render ⤤

&#x2924; &#10532; &nearhk;
2

For CSS stylesheets, use the escape in the content property

\2924
3

Unicode U+2924 — NORTH EAST ARROW WITH HOOK

4

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

5

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

❓ Frequently Asked Questions

Use &nearhk; (named), &#x2924; (hex), &#10532; (decimal), or \2924 in CSS content. All produce ⤤.
U+2924 (NORTH EAST ARROW WITH HOOK). Supplemental Arrows-B block (U+2900–U+297F). Hex 2924, decimal 10532. Named entity: &nearhk;.
In navigation UI, maps, directional labels, and design elements where a hooked north-east arrow indicates curved or returning directional flow—distinct from a plain ↗ arrow.
HTML references (&#10532;, &#x2924;, or &nearhk;) go directly in markup. The CSS escape \2924 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Yes. &nearhk; is the named HTML entity for U+2924 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