HTML Entity for Right Arrow Headless Tail (⤚)

What You'll Learn
How to display the Right Arrow Headless Tail (⤚) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+291A (RIGHTWARDS ARROW WITH TAIL) in the Supplemental Arrows-B block (U+2900–U+297F)—a rightward arrow with tail (often called headless tail), used in navigation icons, UI elements, diagrams, and directional indicators.
Render it with ⤚ (named), ⤚, ⤚, or CSS \291A. Related: U+2919 (⤙, left arrow headless tail / ⤙), U+2920 (⤠, right arrow from bar to black diamond / ⤠). Do not confuse ⤚ with plain right arrow →.
⚡ Quick Reference — Right Arrow Headless Tail
U+291ASupplemental Arrows-B (U+2900–U+297F)
⤚Hexadecimal reference
⤚Decimal reference
⤚Standard HTML entity
Name Value
──────────── ──────────
Unicode U+291A
Hex code ⤚
HTML code ⤚
Named entity ⤚
CSS code \291A
Meaning Rightwards arrow with tail (headless tail)
Related U+2919 = left arrow headless tail (⤙, ⤙)
U+2920 = right arrow from bar to black diamond (⤠, ⤠)
Block Supplemental Arrows-B (U+2900–U+297F)Complete HTML Example
A simple example showing ⤚ using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\291A";
}
</style>
</head>
<body>
<p>Hex: ⤚</p>
<p>Decimal: ⤚</p>
<p>Named: ⤚</p>
<p id="point">CSS: </p>
</body>
</html>🌐 Browser Support
U+291A is widely supported in all modern browsers when the font includes Supplemental Arrows-B glyphs:
👀 Live Preview
See the Right Arrow Headless Tail (⤚) in common contexts:
🧠 How It Works
Named HTML Entity
⤚ is the named entity for U+291A (rightwards arrow with tail). It is the most readable option in HTML source.
Hexadecimal Code
⤚ uses the Unicode hexadecimal value 291A.
Decimal HTML Code
⤚ uses the decimal Unicode value 10522 for the same character.
CSS Entity
\291A is used in CSS stylesheets in the content property of pseudo-elements.
Same visual result
All four methods produce ⤚. Unicode U+291A in the Supplemental Arrows-B block. Previous: Right Arrow From Bar To Black Diamond (⤠). Next: Right Arrow Hook (↪).
Use Cases
The Right Arrow Headless Tail (⤚) is commonly used in:
Menus, breadcrumbs, and UI elements indicating rightward movement.
Technical diagrams, flowcharts, and process flows showing direction.
Workflow mapping and step-by-step process visualizations.
Buttons, icons, and interactive elements with a distinctive arrow style.
Documentation, guides, and onboarding sequences.
Pair ⤚ with plain language (e.g. “next” or “go to”) for screen readers.
💡 Best Practices
Do
- Prefer
⤚in HTML for readable source markup - Use ⤚ when a tail-style right arrow fits your diagram or UI
- Set
<meta charset="utf-8"> - Link to Left Arrow Headless Tail for the paired ⤙ symbol
- Keep one entity style consistent across your project
- Use CSS
\291Afor decorative arrows in pseudo-elements
Don’t
- Confuse ⤚ (U+291A) with ⤙ (U+2919) or plain →
- Use padded Unicode notation like U+0291A—the correct value is
U+291A - Use CSS escape
\291Ain HTML text nodes - Substitute ASCII
->when the specialized arrow ⤚ is intended - Assume all fonts render Supplemental Arrows-B glyphs correctly
Key Takeaways
Four ways to render U+291A in HTML and CSS
⤚ ⤚ ⤚For CSS, use \291A in the content property
Unicode U+291A — RIGHTWARDS ARROW WITH TAIL (⤚)
Paired with left headless tail ⤙ (⤙); distinct from →
Previous: Right Arrow From Bar To Black Diamond (⤠) Next: Right Arrow Hook (↪)
❓ Frequently Asked Questions
⤚ (named), ⤚ (hex), ⤚ (decimal), or \291A in CSS content. All four render ⤚.U+291A (RIGHTWARDS ARROW WITH TAIL). Supplemental Arrows-B block (U+2900–U+297F). Hex 291A, decimal 10522.⤚, ⤚, ⤚) go in markup. The CSS escape \291A is used in stylesheets, typically on ::before or ::after. Both render ⤚.⤚ is the standard named HTML entity for U+291A. You can also use ⤚ (decimal) or ⤚ (hex) and \291A in CSS—all equivalent in modern browsers.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
