HTML Entity for Right Arrow Hook (↪)

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

What You'll Learn

How to display the Right Arrow Hook (↪) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+21AA (RIGHTWARDS ARROW WITH HOOK) in the Arrows block (U+2190–U+21FF)—a rightward arrow with a hook, commonly used for navigation, redirects, command flows, and return-path indicators.

Render it with ↪ (named), ↪, ↪, or CSS \21AA. Related: U+21A9 (↩, left arrow hook / ↩), U+291A (⤚, right arrow headless tail / ⤚). Do not confuse ↪ with plain right arrow →.

⚡ Quick Reference — Right Arrow Hook

Unicode U+21AA

Arrows (U+2190–U+21FF)

Hex Code ↪

Hexadecimal reference

HTML Code ↪

Decimal reference

Named Entity ↪

Standard HTML entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21AA
Hex code       ↪
HTML code      ↪
Named entity   ↪
CSS code       \21AA
Meaning        Rightwards arrow with hook
Related        U+21A9 = left arrow hook (↩, ↩)
               U+291A = right arrow headless tail (⤚, ⤚)
Block          Arrows (U+2190–U+21FF)
1

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\21AA";
  }
 </style>
</head>
<body>
<p>Hex: &#x21AA;</p>
<p>Decimal: &#8618;</p>
<p>Named: &rarrhk;</p>
<p id="point">CSS: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+21AA is widely supported in all modern browsers—it is part of the standard Arrows block:

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

👀 Live Preview

See the Right Arrow Hook (↪) in common contexts:

Redirect Continue ↪ Dashboard
Command flow Run ↪ Output ↪ Next step
Large glyph
Arrow comparison ↩ ↪ →
Entity refs &rarrhk; &#x21AA; &#8618; \21AA

🧠 How It Works

1

Named HTML Entity

&rarrhk; is the named entity for U+21AA (rightwards arrow with hook). It is the most readable option in HTML source.

HTML markup
2

Hexadecimal Code

&#x21AA; uses the Unicode hexadecimal value 21AA.

HTML markup
3

Decimal HTML Code

&#8618; uses the decimal Unicode value 8618 for the same character.

HTML markup
4

CSS Entity

\21AA is used in CSS stylesheets in the content property of pseudo-elements.

CSS stylesheet
=

Same visual result

All four methods produce . Unicode U+21AA in the Arrows block. Previous: Right Arrow Headless Tail (⤚). Next: Right Arrow Loop (↬).

Use Cases

The Right Arrow Hook (↪) is commonly used in:

🧭 Navigation

Menus, breadcrumbs, and UI elements showing rightward movement with a hook.

🔀 Redirects

Redirect pages, link indicators, and continue/next actions.

⌨ Command flows

CLI docs, terminal UIs, and flow diagrams for command sequences.

🎨 UI design

Buttons, icons, and interactive elements with directional indicators.

🚀 Return paths

Workflow diagrams and guides showing direction with a return hook.

♿ Accessibility

Pair ↪ with plain language (e.g. “continue to”) for screen readers.

💡 Best Practices

Do

  • Prefer &rarrhk; in HTML for readable source markup
  • Use ↪ for redirects, continue actions, and command-flow notation
  • Set <meta charset="utf-8">
  • Link to Left Arrow Hook for the paired ↩ symbol
  • Keep one entity style consistent across your project
  • Use CSS \21AA for decorative arrows in pseudo-elements

Don’t

  • Confuse ↪ (U+21AA) with ↩ (U+21A9) or plain →
  • Use padded Unicode notation like U+021AA—the correct value is U+21AA
  • Use CSS escape \21AA in HTML text nodes
  • Substitute ASCII -> when the hook arrow ↪ is intended
  • Confuse ↪ with loop arrow ↬ (&rarrlp;)

Key Takeaways

1

Four ways to render U+21AA in HTML and CSS

&rarrhk; &#x21AA; &#8618;
2

For CSS, use \21AA in the content property

3

Unicode U+21AA — RIGHTWARDS ARROW WITH HOOK (↪)

4

Paired with left hook ↩ (&larrhk;); distinct from → and loop ↬

❓ Frequently Asked Questions

Use &rarrhk; (named), &#x21AA; (hex), &#8618; (decimal), or \21AA in CSS content. All four render ↪.
U+21AA (RIGHTWARDS ARROW WITH HOOK). Arrows block (U+2190–U+21FF). Hex 21AA, decimal 8618.
For navigation symbols, redirects, command flows, UI design, return-path indicators, and content that shows rightward movement with a hook.
Named and numeric HTML references (&rarrhk;, &#8618;, &#x21AA;) go in markup. The CSS escape \21AA is used in stylesheets, typically on ::before or ::after. Both render ↪.
&rarrhk; is the standard named HTML entity for U+21AA. You can also use &#8618; (decimal) or &#x21AA; (hex) and \21AA in CSS—all equivalent in modern browsers.

Explore More HTML Entities!

Discover 1500+ HTML character references — arrows, symbols, math operators, 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