HTML Entity for Right Double Arrow Tail (⤜)

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

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

Unicode U+291C

Supplemental Arrows-B

Hex Code ⤜

Hexadecimal reference

HTML Code ⤜

Decimal reference

Named Entity ⤜

Most readable option

Reference Table
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 (⤛)
1

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:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\291C";
  }
 </style>
</head>
<body>
<p>Symbol using Hexadecimal: &#x291C;</p>
<p>Symbol using HTML Code: &#10524;</p>
<p>Symbol using HTML Entity: &rAtail;</p>
<p id="point">Symbol using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Right Double Arrow Tail (⤜) renders in modern browsers when the font includes Supplemental Arrows-B glyphs:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Right Double Arrow Tail (⤜) in navigation and UI contexts:

Forward control Next ⤜
Toolbar icon Continue ⤜
Wizard step Proceed ⤜
Large glyph
Arrow comparison → ⇻ ⤜ ⤛
Entity refs &rAtail; &#x291C; &#10524; \291C

🧠 How It Works

1

Named HTML Entity

&rAtail; 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.

HTML markup
2

Hexadecimal Code

&#x291C; uses the Unicode hexadecimal value 291C. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

&#10524; uses the decimal Unicode value 10524 for the same symbol.

HTML markup
4

CSS Entity

\291C is used in CSS stylesheets in the content property of pseudo-elements like ::after.

CSS stylesheet
=

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:

🧭 Navigation

Next, forward, or continue controls in app headers, toolbars, and menus.

🎨 Graphic design

Distinct arrow style in logos, icons, or text-based design elements.

📄 Documentation

Document flow, shortcuts, or specification notation that uses this arrow.

⌨ Shortcut notation

Show key labels or shortcut hints where a double-tail arrow is required.

📊 Diagrams

Indicate direction or special transition type in process and state diagrams.

📱 App design

Custom navigation or action icons using Supplemental Arrows-B symbols.

💡 Best Practices

Do

  • Prefer &rAtail; in HTML for readability
  • Pair ⤜ with text (e.g., “Next”, “Continue”) or aria-label for 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 &rAtail; (U+291C) with &ratail; (U+291A, simple right arrow headless tail)
  • Use CSS \291C inside 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

1

Four ways to render U+291C in web content

&rAtail; &#x291C; &#10524;
2

For CSS, use \291C in the content property

3

Unicode U+291C — RIGHTWARDS ARROW WITH TAIL WITH DOUBLE VERTICAL STROKE

4

Supplemental Arrows-B block (U+2900–U+297F)

❓ Frequently Asked Questions

Use &rAtail; (named), &#x291C; (hex), &#10524; (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.
In navigation icons and UI controls, graphic design and symbols, technical documentation and diagrams, keyboard or shortcut notation, and any content requiring a right-double-arrow-tail symbol.
Named and numeric HTML references (&rAtail;, &#10524;, &#x291C;) go in markup. The CSS escape \291C is used in stylesheets, typically on ::before or ::after. Both produce ⤜.
Yes. &rAtail; is the named HTML entity for U+291C. You can also use &#10524; (decimal), &#x291C; (hex), or \291C in CSS. Do not confuse with &ratail; (U+291A).

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