HTML Entity for Right Two Headed Triple Dash Arrow (⤐)

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

What You'll Learn

How to display the Right Two Headed Triple Dash Arrow (⤐) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+2910 (RIGHTWARDS TWO-HEADED TRIPLE DASH ARROW) in the Supplemental Arrows-B block (U+2900–U+297F)—a two-headed arrow with triple dashes, used for bidirectional flow, mathematical notation, and diagram emphasis.

Render it with ⤐ (named), ⤐, ⤐, or CSS \2910. Do not confuse ⤐ with U+290F (⤏, single-headed triple dash / ⤏) or U+21A0 (↠, plain two headed / ↠).

⚡ Quick Reference — Right Two Headed Triple Dash Arrow

Unicode U+2910

Supplemental Arrows-B

Hex Code ⤐

Hexadecimal reference

HTML Code ⤐

Decimal reference

Named Entity ⤐

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2910
Hex code       ⤐
HTML code      ⤐
Named entity   ⤐
CSS code       \2910
Meaning        Two headed arrow with triple dashes
Related        U+290F = rightwards triple dash arrow (⤏ / ⤏)
               U+21A0 = rightwards two headed arrow (↠ / ↠)
               U+2900 = two headed arrow with vertical stroke (⤀)
1

Complete HTML Example

A simple example showing the Right Two Headed Triple Dash Arrow (⤐) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2910";
  }
 </style>
</head>
<body>
<p>Symbol (named): &RBarr;</p>
<p>Symbol (hex): &#x2910;</p>
<p>Symbol (decimal): &#10512;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Right Two Headed Triple Dash Arrow (⤐) 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 Triple Dash Arrow (⤐) rendered live in different contexts:

Inline notation Bidirectional flow ⤐ with triple dashes.
Large glyph
Flow notation A ⤐ B (two-way triple dash)
Arrow comparison ⤏ ⤐ ↠
Numeric refs &RBarr; &#x2910; &#10512; \2910
Diagrams Use ⤐ for bidirectional links with triple dash emphasis.

🧠 How It Works

1

Named Entity

&RBarr; is the semantic named entity for U+2910—the easiest to read in source HTML.

HTML markup
2

Hexadecimal Code

&#x2910; uses the Unicode hexadecimal value 2910 for the right two headed triple dash arrow.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\2910 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+2910 is in the Supplemental Arrows-B block. Previous: Right Two Headed Arrow Vertical Stroke (U+2900).

Use Cases

The Right Two Headed Triple Dash Arrow (⤐) is commonly used in:

⇄ Bidirectional Indicators

Show two-way relationships with triple dash emphasis on both heads.

∑ Mathematical Notation

Use in equations and logical expressions requiring this arrow variant.

📊 Flowcharts

Indicate bidirectional flow with triple dash modifiers.

📄 Technical Diagrams

Include in architecture and system diagrams with specialized arrow notation.

🛠 Process Flows

Document workflows with two-headed triple dash transitions.

📚 Documentation

Reference bidirectional API or system links in HTML technical docs.

💡 Best Practices

Do

  • Prefer &RBarr; for readable source markup
  • Distinguish ⤐ from ⤏ (&rBarr;, single-headed) and ↠ (&Rarr;)
  • Add aria-label or surrounding text for accessibility
  • Verify your font supports Supplemental Arrows-B (U+2910)
  • Keep one entity style per project for consistency

Don’t

  • Confuse &RBarr; (U+2910) with &rBarr; (U+290F)
  • Use CSS \2910 inside HTML text nodes
  • Rely on the arrow alone without context for screen readers
  • Mix entity styles randomly in one file
  • Assume all fonts render supplemental arrow glyphs identically
  • Use HTML entities in JS (use \u2910 instead)

Key Takeaways

1

Four methods all render ⤐

&RBarr; &#x2910; &#10512;
2

For CSS, use \2910 in the content property

3

Unicode U+2910 — RIGHTWARDS TWO-HEADED TRIPLE DASH ARROW

4

Prefer &RBarr;—not to be confused with &rBarr; (U+290F)

❓ Frequently Asked Questions

Use &RBarr; (named), &#x2910; (hex), &#10512; (decimal), or \2910 in CSS content. All four methods render ⤐ correctly.
U+2910 (RIGHTWARDS TWO-HEADED TRIPLE DASH ARROW). Supplemental Arrows-B block (U+2900–U+297F). Hex 2910, decimal 10512.
In bidirectional indicators, mathematical notation, flowcharts, diagrams, process flows, and technical documentation where a two-headed triple dash arrow is needed.
&RBarr; is more readable in markup. Numeric references (&#10512; or &#x2910;) are explicit. CSS escape \2910 belongs in stylesheets. All produce ⤐.
Yes. &RBarr; is the named HTML entity for U+2910. Do not confuse it with &rBarr;, which is U+290F (single-headed right triple dash arrow).

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