HTML Entity for Right Double Arrow Tail (⤜)

What You'll Learn
How to display the Right Double Arrow Tail (⤜) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+291C (RIGHTWARDS ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE) in the Supplemental Arrows-B block (U+2900–U+297F)—a rightwards arrow with tail and double vertical stroke, used in navigation icons, graphics, flow diagrams, and technical or diagrammatic content.
Render it with ⤜ (named), ⤜, ⤜, or CSS \291C. Related: U+21FB (⇻, right arrow double vertical stroke), U+291B (⤛, left arrow headless double tail / ⤛).
⚡ Quick Reference — Right Double Arrow Tail
U+291CSupplemental Arrows-B
⤜Hexadecimal reference
⤜Decimal reference
⤜Most readable option
Name Value
──────────── ──────────
Unicode U+291C
Hex code ⤜
HTML code ⤜
Named entity ⤜
CSS code \291C
Meaning Rightwards arrow with tail and double vertical stroke
Related U+21FB = right arrow double vertical stroke (⇻)
U+291B = left arrow headless double tail (⤛)Complete HTML Example
A simple example showing the Right Double Arrow Tail (⤜) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\291C";
}
</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 Right Double Arrow Tail (⤜) renders in modern browsers when the font includes Supplemental Arrows-B glyphs:
👀 Live Preview
See the Right Double Arrow Tail (⤜) in navigation and UI contexts:
🧠 How It Works
Named HTML Entity
⤜ is the named entity for the Right Double Arrow Tail (rightwards arrow with tail and double vertical stroke). It is easy to read in navigation and UI markup.
Hexadecimal Code
⤜ uses the Unicode hexadecimal value 291C. The x prefix indicates hexadecimal format.
Decimal HTML Code
⤜ uses the decimal Unicode value 10524 for the same symbol.
CSS Entity
\291C is used in CSS stylesheets in the content property of pseudo-elements like ::after.
Same visual result
All four methods produce ⤜. Unicode U+291C is in Supplemental Arrows-B. Previous: Right Double Arrow Stroke (⇏). Next: Right Double Arrow Vertical Stroke.
Use Cases
The Right Double Arrow Tail (⤜) is commonly used in:
Next, forward, or continue 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 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., “Next”, “Continue”) or
aria-labelfor accessibility - Use fonts that support Supplemental Arrows-B (U+291C)
- Set
<meta charset="utf-8"> - Keep one encoding style per project for consistency
- Test glyph rendering across browsers and fonts
Don’t
- Confuse
⤜(U+291C) with⤚(U+291A, simple right arrow headless tail) - Use CSS
\291Cinside 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
Key Takeaways
Four ways to render U+291C in web content
⤜ ⤜ ⤜For CSS, use \291C in the content property
Unicode U+291C — RIGHTWARDS ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE
Supplemental Arrows-B block (U+2900–U+297F)
Previous: Right Double Arrow Stroke (⇏) Next: Right Double Arrow Vertical Stroke
❓ Frequently Asked Questions
⤜ (named), ⤜ (hex), ⤜ (decimal), or \291C in CSS content. All four methods render ⤜ correctly.U+291C (RIGHTWARDS ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE). Supplemental Arrows-B block (U+2900–U+297F). Hex 291C, decimal 10524.⤜, ⤜, ⤜) go in markup. The CSS escape \291C is used in stylesheets, typically on ::before or ::after. Both produce ⤜.⤜ is the named HTML entity for U+291C. You can also use ⤜ (decimal), ⤜ (hex), or \291C in CSS. Do not confuse with ⤚ (U+291A).Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
