HTML Entity for Left Arrow Headless Tail (⤙)

What You'll Learn
How to display the Left Arrow Headless Tail (⤙) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+2919 (LEFTWARDS ARROW WITH TAIL) in the Supplemental Arrows-B block (U+2900–U+297F)—a leftwards arrow with tail (often called headless tail), used in navigation icons, UI elements, and technical or diagrammatic content.
Render it with ⤙ (named), ⤙, ⤙, or CSS \2919. Related: U+291B (⤛, left arrow headless double tail / ⤛), U+291A (⤚, right arrow headless tail / ⤚).
⚡ Quick Reference — Left Arrow Headless Tail
U+2919Supplemental Arrows-B
⤙Hexadecimal reference
⤙Decimal reference
⤙Most readable option
Name Value
──────────── ──────────
Unicode U+2919
Hex code ⤙
HTML code ⤙
Named entity ⤙
CSS code \2919
Meaning Leftwards arrow with tail (headless tail)
Related U+291B = left arrow headless double tail (⤛)
U+291A = right arrow headless tail (⤚)Complete HTML Example
A simple example showing the Left Arrow Headless Tail (⤙) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2919";
}
</style>
</head>
<body>
<p>Symbol using Hexadecimal: ⤙</p>
<p>Symbol using HTML Code: ⤙</p>
<p>Symbol using HTML Entity: ⤙</p>
<p id="point">Symbol using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Left Arrow Headless Tail (⤙) renders in modern browsers when the font includes Supplemental Arrows-B glyphs:
👀 Live Preview
See the Left Arrow Headless Tail (⤙) in navigation and UI contexts:
🧠 How It Works
Named HTML Entity
⤙ is the named entity for the Left Arrow Headless Tail (leftwards arrow with tail). It is easy to read in navigation and UI markup.
Hexadecimal Code
⤙ uses the Unicode hexadecimal value 2919. The x prefix indicates hexadecimal format.
Decimal HTML Code
⤙ uses the decimal Unicode value 10521 for the same symbol.
CSS Entity
\2919 is used in CSS stylesheets in the content property of pseudo-elements like ::after.
Same visual result
All four methods produce ⤙. Unicode U+2919 is in Supplemental Arrows-B. Next: Left Arrow Hook.
Use Cases
The Left Arrow Headless Tail (⤙) is commonly used in:
Back, return, or left-direction controls in app headers, toolbars, and menus.
Distinct arrow style in logos, icons, or text-based design elements.
Document flow, shortcuts, or specification notation that uses this arrow.
Show key labels or shortcut hints where a headless-tail arrow is required.
Indicate direction or special transition type in process and state diagrams.
Custom navigation or action icons using Supplemental Arrows-B symbols.
💡 Best Practices
Do
- Prefer
⤙in HTML for readability - Pair ⤙ with text (e.g., “Back”) or
aria-labelfor accessibility - Use fonts that support Supplemental Arrows-B (U+2919)
- Set
<meta charset="utf-8"> - Keep one encoding style per project for consistency
- Test glyph rendering across browsers and fonts
Don’t
- Confuse
⤙(U+2919) with⤛(U+291B) - Use CSS
\2919inside HTML text nodes - Confuse ⤙ with simple ← or ⤛ arrows
- Rely on the symbol alone without context in critical UI
- Assume legacy systems render Supplemental Arrows-B without testing
Key Takeaways
Four ways to render U+2919 in web content
⤙ ⤙ ⤙For CSS, use \2919 in the content property
Unicode U+2919 — LEFTWARDS ARROW WITH TAIL
Supplemental Arrows-B block (U+2900–U+297F)
Previous: Left Arrow Headless Double Tail (⤛) Next: Left Arrow Hook
❓ Frequently Asked Questions
⤙ (named), ⤙ (hex), ⤙ (decimal), or \2919 in CSS content. All four methods render ⤙ correctly.U+2919 (LEFTWARDS ARROW WITH TAIL). Supplemental Arrows-B block (U+2900–U+297F). Hex 2919, decimal 10521. Often called headless tail.⤙, ⤙, ⤙) go in markup. The CSS escape \2919 is used in stylesheets, typically on ::before or ::after. Both produce ⤙.⤙ is the named HTML entity for U+2919. You can also use ⤙ (decimal), ⤙ (hex), or \2919 in CSS. Do not confuse with ⤛ (U+291B).Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
