HTML Entity for Left Arrow Headless Double Tail (⤛)

What You'll Learn
How to display the Left Arrow Headless Double Tail (⤛) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+291B (LEFTWARDS ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE) in the Supplemental Arrows-B block (U+2900–U+297F)—a leftwards arrow with tail and double vertical stroke (often called headless double tail), used in navigation icons, graphics, and technical or diagrammatic content.
Render it with ⤛ (named), ⤛, ⤛, or CSS \291B. Related: U+21FA (⇺, left arrow double vertical stroke), U+291C (⤜, right arrow headless double tail / ⤜).
⚡ Quick Reference — Left Arrow Headless Double Tail
U+291BSupplemental Arrows-B
⤛Hexadecimal reference
⤛Decimal reference
⤛Most readable option
Name Value
──────────── ──────────
Unicode U+291B
Hex code ⤛
HTML code ⤛
Named entity ⤛
CSS code \291B
Meaning Leftwards arrow with tail and double vertical stroke
Related U+21FA = left arrow double vertical stroke (⇺)
U+291C = right arrow headless double tail (⤜)Complete HTML Example
A simple example showing the Left Arrow Headless Double Tail (⤛) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\291B";
}
</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 Double Tail (⤛) renders in modern browsers when the font includes Supplemental Arrows-B glyphs:
👀 Live Preview
See the Left Arrow Headless Double Tail (⤛) in navigation and UI contexts:
🧠 How It Works
Named HTML Entity
⤛ is the named entity for the Left Arrow Headless Double Tail (leftwards arrow with tail and double vertical stroke). It is easy to read in navigation and UI markup.
Hexadecimal Code
⤛ uses the Unicode hexadecimal value 291B. The x prefix indicates hexadecimal format.
Decimal HTML Code
⤛ uses the decimal Unicode value 10523 for the same symbol.
CSS Entity
\291B is used in CSS stylesheets in the content property of pseudo-elements like ::after.
Same visual result
All four methods produce ⤛. Unicode U+291B is in Supplemental Arrows-B. Next: Left Arrow Headless Tail.
Use Cases
The Left Arrow Headless Double 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-double-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+291B)
- Set
<meta charset="utf-8"> - Keep one encoding style per project for consistency
- Test glyph rendering across browsers and fonts
Don’t
- Use CSS
\291Binside HTML text nodes - Confuse ⤛ with ⇺ or simple ← arrows
- Rely on the symbol alone without context in critical UI
- Assume legacy systems render Supplemental Arrows-B without testing
- Mix named and numeric entities inconsistently in the same component
Key Takeaways
Four ways to render U+291B in web content
⤛ ⤛ ⤛For CSS, use \291B in the content property
Unicode U+291B — LEFTWARDS ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE
Supplemental Arrows-B block (U+2900–U+297F)
Previous: Left Arrow Double Vertical Stroke (⇺) Next: Left Arrow Headless Tail
❓ Frequently Asked Questions
⤛ (named), ⤛ (hex), ⤛ (decimal), or \291B in CSS content. All four methods render ⤛ correctly.U+291B (LEFTWARDS ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE). Supplemental Arrows-B block (U+2900–U+297F). Hex 291B, decimal 10523. Often called headless double tail.⤛, ⤛, ⤛) go in markup. The CSS escape \291B is used in stylesheets, typically on ::before or ::after. Both produce ⤛.⤛ is the named HTML entity for U+291B. You can also use ⤛ (decimal), ⤛ (hex), or \291B in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
