HTML Entity for Right Arrow Tail (↣)

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

What You'll Learn

How to display the Right Arrow Tail (↣) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+21A3 (RIGHTWARDS ARROW WITH TAIL) in the Arrows block (U+2190–U+21FF)—a rightward arrow with a tail, used for navigation, UI design, directional indicators, and distinctive visual elements.

Render it with ↣ (named), ↣, ↣, or CSS \21A3. Related: U+21A2 (↢, left arrow tail / ↢), U+291A (⤚, right arrow headless tail / ⤚). Do not confuse ↣ with plain right arrow →.

⚡ Quick Reference — Right Arrow Tail

Unicode U+21A3

Arrows (U+2190–U+21FF)

Hex Code ↣

Hexadecimal reference

HTML Code ↣

Decimal reference

Named Entity ↣

Standard HTML entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21A3
Hex code       ↣
HTML code      ↣
Named entity   ↣
CSS code       \21A3
Meaning        Rightwards arrow with tail
Related        U+21A2 = left arrow tail (↢, ↢)
               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: "\21A3";
  }
 </style>
</head>
<body>
<p>Hex: &#x21A3;</p>
<p>Decimal: &#8611;</p>
<p>Named: &rarrtl;</p>
<p id="point">CSS: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+21A3 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 Tail (↣) in common contexts:

Navigation Home ↣ Section ↣ Page
Next step Continue ↣
Large glyph
Arrow comparison ↢ ↣ →
Entity refs &rarrtl; &#x21A3; &#8611; \21A3

🧠 How It Works

1

Named HTML Entity

&rarrtl; is the named entity for U+21A3 (rightwards arrow with tail). It is the most readable option in HTML source.

HTML markup
2

Hexadecimal Code

&#x21A3; uses the Unicode hexadecimal value 21A3.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

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

CSS stylesheet
=

Same visual result

All four methods produce . Unicode U+21A3 in the Arrows block. Previous: Right Arrow Stroke (↛). Next: Right Arrow Tail Double Vertical Stroke (⤕).

Use Cases

The Right Arrow Tail (↣) is commonly used in:

🧭 Navigation

Menus, breadcrumbs, and links with a distinctive tail-arrow style.

🎨 UI design

Buttons, icons, and interactive elements with directional indicators.

🗺 Wayfinding

Maps, directions, and guides showing movement or next steps.

🛠 Visual design

Layouts and graphics needing a unique arrow with tail imagery.

🚀 Web development

Apps and sites that differentiate tail arrows from plain →.

♿ Accessibility

Pair ↣ with plain language (e.g. “next” or “go to”) for screen readers.

💡 Best Practices

Do

  • Prefer &rarrtl; in HTML for readable source markup
  • Use ↣ when a tail-style right arrow fits your navigation or UI
  • Set <meta charset="utf-8">
  • Link to Left Arrow Tail for the paired ↢ symbol
  • Keep one entity style consistent across your project
  • Use CSS \21A3 for decorative tail arrows in pseudo-elements

Don’t

  • Confuse ↣ (U+21A3) with ↢ (U+21A2) or ⤚ (U+291A)
  • Use padded Unicode notation like U+021A3—the correct value is U+21A3
  • Use CSS escape \21A3 in HTML text nodes
  • Substitute ASCII -> when the tail arrow ↣ is intended
  • Confuse ↣ with maps-to ↦ (&mapsto;)

Key Takeaways

1

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

&rarrtl; &#x21A3; &#8611;
2

For CSS, use \21A3 in the content property

3

Unicode U+21A3 — RIGHTWARDS ARROW WITH TAIL (↣)

4

Paired with left tail ↢ (&larrtl;); distinct from headless tail ⤚ and →

❓ Frequently Asked Questions

Use &rarrtl; (named), &#x21A3; (hex), &#8611; (decimal), or \21A3 in CSS content. All four render ↣.
U+21A3 (RIGHTWARDS ARROW WITH TAIL). Arrows block (U+2190–U+21FF). Hex 21A3, decimal 8611.
For navigation arrows, UI design, visual elements, directional indicators, navigation menus, and content needing a distinctive rightward arrow with tail.
&rarrtl; is more readable in source markup; &#8611; and &#x21A3; are numeric alternatives. All render ↣ in modern browsers.
Named and numeric HTML references (&rarrtl;, &#8611;, &#x21A3;) go in markup. The CSS escape \21A3 is used in stylesheets, typically on ::before or ::after. Both render ↣.

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