HTML Entity for Left Arrow Hook (↩)

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

What You'll Learn

How to display the Left Arrow Hook (↩) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+21A9 (LEFTWARDS ARROW WITH HOOK) in the Arrows block (U+2190–U+21FF)—a leftwards arrow with hook, commonly used for return/enter key notation, navigation, and UI elements.

Render it with ↩ (named), ↩, ↩, or CSS \21A9. Related: U+21AA (↪, right arrow hook / ↪), U+2190 (←, simple left arrow / ←).

⚡ Quick Reference — Left Arrow Hook

Unicode U+21A9

Arrows block

Hex Code ↩

Hexadecimal reference

HTML Code ↩

Decimal reference

Named Entity ↩

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21A9
Hex code       ↩
HTML code      ↩
Named entity   ↩
CSS code       \21A9
Meaning        Leftwards arrow with hook
Related        U+21AA = right arrow hook (↪)
               U+2190 = left arrow (←)
1

Complete HTML Example

A simple example showing the Left Arrow Hook (↩) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\21A9";
  }
 </style>
</head>
<body>
<p>Symbol using Hexadecimal: &#x21A9;</p>
<p>Symbol using HTML Code: &#8617;</p>
<p>Symbol using HTML Entity: &larrhk;</p>
<p id="point">Symbol using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Left Arrow Hook (↩) renders in modern browsers when the font includes Arrows block glyphs:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Left Arrow Hook (↩) in navigation and return-key contexts:

Return / back ↩ Return
Enter key hint Press ↩ Enter
Form submit ↩ Submit
Large glyph
Arrow comparison ↩ ↪ ← ⤙
Entity refs &larrhk; &#x21A9; &#8617; \21A9

🧠 How It Works

1

Named HTML Entity

&larrhk; is the named entity for the Left Arrow Hook (leftwards arrow with hook). It is easy to read in navigation and return-key markup.

HTML markup
2

Hexadecimal Code

&#x21A9; uses the Unicode hexadecimal value 21A9. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

&#8617; uses the decimal Unicode value 8617 for the same symbol.

HTML markup
4

CSS Entity

\21A9 is used in CSS stylesheets in the content property of pseudo-elements like ::after.

CSS stylesheet
=

Same visual result

All four methods produce . Unicode U+21A9 is in the Arrows block. Next: Left Arrow Loop.

Use Cases

The Left Arrow Hook (↩) is commonly used in:

🧭 Navigation

Return, back, or left-direction controls in app headers, toolbars, and menus.

⌨ Return key

Indicate return or enter key in keyboard shortcuts, forms, or documentation.

📄 Documentation

Document flow, submit actions, or specification notation that uses this arrow.

📝 Form hints

Submit, enter, or “send” hints in forms and dialogs.

📊 Diagrams

Indicate return path or feedback loop in process and state diagrams.

🎨 Design

Distinct arrow-with-hook style in logos, icons, or text-based design.

💡 Best Practices

Do

  • Prefer &larrhk; in HTML for readability
  • Pair ↩ with text (e.g., “Return”) or aria-label for accessibility
  • Use fonts that support the Arrows block (U+21A9)
  • Set <meta charset="utf-8">
  • Keep one encoding style per project for consistency
  • Use ↩ where return/enter meaning is clear from context

Don’t

  • Use CSS \21A9 inside HTML text nodes
  • Confuse ↩ with ↪ (right hook) or simple ←
  • Rely on the symbol alone without context in critical UI
  • Use ↩ purely decoratively where a labeled button is clearer
  • Mix named and numeric entities inconsistently in the same component

Key Takeaways

1

Four ways to render U+21A9 in web content

&larrhk; &#x21A9; &#8617;
2

For CSS, use \21A9 in the content property

3

Unicode U+21A9 — LEFTWARDS ARROW WITH HOOK

4

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

❓ Frequently Asked Questions

Use &larrhk; (named), &#x21A9; (hex), &#8617; (decimal), or \21A9 in CSS content. All four methods render ↩ correctly.
U+21A9 (LEFTWARDS ARROW WITH HOOK). Arrows block (U+2190–U+21FF). Hex 21A9, decimal 8617. Often used for return or enter key notation.
In navigation and back/return controls, keyboard or return-key notation, form submit or enter hints, technical documentation, and any UI that indicates leftward return or enter action.
Named and numeric HTML references (&larrhk;, &#8617;, &#x21A9;) go in markup. The CSS escape \21A9 is used in stylesheets, typically on ::before or ::after. Both produce ↩.
Yes. &larrhk; is the named HTML entity for U+21A9. You can also use &#8617; (decimal), &#x21A9; (hex), or \21A9 in CSS.

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