HTML Entity for Right Two Headed Arrow Tail (⤖)

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

What You'll Learn

How to display the Right Two Headed Arrow Tail (⤖) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+2916 (RIGHTWARDS TWO HEADED ARROW WITH TAIL) in the Supplemental Arrows-B block (U+2900–U+297F)—a two-headed arrow with a tail, used for bidirectional flow, mathematical notation, and diagram emphasis.

Render it with ⤖ (named), ⤖, ⤖, or CSS \2916. Do not confuse ⤖ with U+21A0 (↠, plain two headed / ↠) or U+2905 (⤅, from bar / ⤅).

⚡ Quick Reference — Right Two Headed Arrow Tail

Unicode U+2916

Supplemental Arrows-B

Hex Code ⤖

Hexadecimal reference

HTML Code ⤖

Decimal reference

Named Entity ⤖

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2916
Hex code       ⤖
HTML code      ⤖
Named entity   ⤖
CSS code       \2916
Meaning        Two headed arrow with tail (points right)
Related        U+21A0 = rightwards two headed arrow (↠ / ↠)
               U+2905 = two headed arrow from bar (⤅ / ⤅)
1

Complete HTML Example

A simple example showing the Right Two Headed 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: "\2916";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x2916;</p>
<p>Symbol (decimal): &#10518;</p>
<p>Symbol (named): &Rarrtl;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Right Two Headed Arrow Tail (⤖) is universally supported in all 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 Two Headed Arrow Tail (⤖) rendered live in different contexts:

Inline notation Branch ⤖ with tail emphasis.
Large glyph
Flow notation A ⤖ B (tailed link)
Arrow comparison ↠ ⤅ ⤖
Named vs numeric &Rarrtl; &#x2916; &#10518; \2916
Diagrams Use ⤖ for two-way links with a tail modifier in flowcharts.

🧠 How It Works

1

Hexadecimal Code

&#x2916; uses the Unicode hexadecimal value 2916 for the right two headed arrow with tail. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#10518; uses the decimal Unicode value 10518 to display the same character.

HTML markup
3

Named Entity

&Rarrtl; is the semantic named entity — the easiest to read in source HTML and the most self-descriptive option.

HTML markup
4

CSS Entity

\2916 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+2916 is in the Supplemental Arrows-B block. Previous: Right Two Headed Arrow From Bar.

Use Cases

The Right Two Headed Arrow Tail (⤖) is commonly used in:

⇄ Bidirectional Flow

Show two-way links with a tail modifier for emphasis or origin.

∑ Mathematical Notation

Use in equations and logical expressions with tailed arrow notation.

📊 Flowcharts

Mark tailed bidirectional flow in process and workflow diagrams.

📄 Technical Diagrams

Include in architecture diagrams with tailed two-headed connections.

🛠 Process Flows

Document workflows where paths use tailed arrow notation.

📚 Documentation

Reference bidirectional system links in HTML technical docs.

💡 Best Practices

Do

  • Use &Rarrtl; for readable source markup
  • Add aria-label or surrounding text for accessibility
  • Distinguish ⤖ (with tail) from ⤅ (from bar) and ↠ (plain)
  • Verify your font supports Supplemental Arrows-B (U+2916)
  • Keep one entity style per project for consistency

Don’t

  • Confuse ⤖ with ⤅ (from bar) or ↠ (plain two headed)
  • Confuse &Rarrtl; with other arrow entities (it is U+2916 only)
  • Assume ⤖ is the robot emoji (that is U+1F916, a different character)
  • Use CSS \2916 inside HTML text nodes
  • Rely on the arrow alone without context for screen readers
  • Mix entity styles randomly in one file

Key Takeaways

1

Four HTML references plus CSS all render ⤖

&#x2916; &#10518; &Rarrtl;
2

For CSS, use \2916 in the content property

3

Unicode U+2916 — RIGHTWARDS TWO HEADED ARROW WITH TAIL

4

Prefer &Rarrtl; for readability—it’s the named HTML entity

❓ Frequently Asked Questions

Use &#x2916; (hex), &#10518; (decimal), &Rarrtl; (named), or \2916 in CSS content. All four methods render ⤖ correctly.
U+2916 (RIGHTWARDS TWO HEADED ARROW WITH TAIL). Supplemental Arrows-B block (U+2900–U+297F). Hex 2916, decimal 10518. A two-headed arrow with a tail pointing to the right.
In bidirectional indicators, mathematical notation, flowcharts, diagrams, process flows, and technical documentation where a two-headed arrow with tail is needed.
HTML references (&#10518;, &#x2916;, or &Rarrtl;) go in markup. The CSS escape \2916 is used in stylesheets, typically on ::before or ::after. Both produce ⤖.
Yes. &Rarrtl; is the named HTML entity for U+2916. You can also use &#10518; (decimal) or &#x2916; (hex) and \2916 in CSS.

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