HTML Entity for Left Arrow Tail (↢)

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

What You'll Learn

How to display the Left Arrow Tail (↢) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+21A2 (LEFTWARDS ARROW WITH TAIL) in the Arrows block (U+2190–U+21FF)—a leftwards arrow with a tail, commonly used in navigation, maps, and UI controls.

Render it with ↢ (named), ↢, ↢, or CSS \21A2. Related: U+21A3 (↣, right arrow with tail / ↣), U+2190 (←, simple left arrow / ←).

⚡ Quick Reference — Left Arrow Tail

Unicode U+21A2

Arrows block

Hex Code ↢

Hexadecimal reference

HTML Code ↢

Decimal reference

Named Entity ↢

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21A2
Hex code       ↢
HTML code      ↢
Named entity   ↢
CSS code       \21A2
Meaning        Leftwards arrow with tail
Related        U+21A3 = right arrow tail (↣)
               U+2190 = left arrow (←)
1

Complete HTML Example

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

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

🌐 Browser Support

The Left Arrow Tail (↢) 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 Tail (↢) in navigation and UI contexts:

Back navigation ↢ Back
Map / turn left ↢ Turn left at junction
Route indicator Route A ↢ Route B
Large glyph
Arrow comparison ↢ ↣ ← ↚
Entity refs &larrtl; &#x21A2; &#8610; \21A2

🧠 How It Works

1

Named HTML Entity

&larrtl; is the named entity for the Left Arrow Tail (leftwards arrow with tail). It is easy to read in navigation and map markup.

HTML markup
2

Hexadecimal Code

&#x21A2; uses the Unicode hexadecimal value 21A2. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\21A2 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+21A2 is in the Arrows block. Next: Left Arrow Through Less Than.

Use Cases

The Left Arrow Tail (↢) is commonly used in:

🧭 Navigation

Direction, turn-left, or route indicators in app headers, maps, and navigation.

📱 UI Controls

Back, previous, or left-direction controls in toolbars and menus.

📄 Documentation

Document flow, pointers, or specification notation that uses this arrow.

📊 Diagrams

Indicate direction or pointer with tail in process and state diagrams.

⌨ Shortcuts

Show shortcut hints for back or left action in help and UI.

🗺 Maps

Turn indicators, waypoints, or directional cues in map interfaces.

💡 Best Practices

Do

  • Prefer &larrtl; in HTML for readability
  • Pair ↢ with text (e.g., “Back”) or aria-label for accessibility
  • Use fonts that support the Arrows block (U+21A2)
  • Set <meta charset="utf-8">
  • Keep one encoding style per project for consistency
  • Distinguish ↢ from ← when the tail detail matters

Don’t

  • Confuse &larrtl; (U+21A2) with &larr; (U+2190)
  • Confuse &larrtl; with &rarrtl; (U+21A3, right arrow tail)
  • Use CSS \21A2 inside HTML text nodes
  • Rely on the symbol alone without context in critical UI
  • Mix named and numeric entities inconsistently in the same component

Key Takeaways

1

Four ways to render U+21A2 in web content

&larrtl; &#x21A2; &#8610;
2

For CSS, use \21A2 in the content property

3

Unicode U+21A2 — LEFTWARDS ARROW WITH TAIL

4

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

❓ Frequently Asked Questions

Use &larrtl; (named), &#x21A2; (hex), &#8610; (decimal), or \21A2 in CSS content. All four methods render ↢ correctly.
U+21A2 (LEFTWARDS ARROW WITH TAIL). Arrows block (U+2190–U+21FF). Hex 21A2, decimal 8610. Commonly used for navigation and maps.
For navigation and maps, UI back/previous controls, technical documentation, diagrams, keyboard shortcuts, and any content that needs a leftwards arrow with tail.
Named and numeric HTML references (&larrtl;, &#8610;, &#x21A2;) go in markup. The CSS escape \21A2 is used in stylesheets, typically on ::before or ::after. Both produce ↢.
Yes. &larrtl; is the named HTML entity for U+21A2. You can also use &#8610; (decimal), &#x21A2; (hex), or \21A2 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