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

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
U+2910Supplemental Arrows-B
⤐Hexadecimal reference
⤐Decimal reference
⤐Most readable option
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 (⤀)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2910";
}
</style>
</head>
<body>
<p>Symbol (named): ⤐</p>
<p>Symbol (hex): ⤐</p>
<p>Symbol (decimal): ⤐</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The Right Two Headed Triple Dash Arrow (⤐) is universally supported in all modern browsers when the font includes Supplemental Arrows-B glyphs:
👀 Live Preview
See the Right Two Headed Triple Dash Arrow (⤐) rendered live in different contexts:
🧠 How It Works
Named Entity
⤐ is the semantic named entity for U+2910—the easiest to read in source HTML.
Hexadecimal Code
⤐ uses the Unicode hexadecimal value 2910 for the right two headed triple dash arrow.
Decimal HTML Code
⤐ uses the decimal Unicode value 10512 to display the same character.
CSS Entity
\2910 is used in CSS stylesheets in the content property of pseudo-elements like ::after.
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:
Show two-way relationships with triple dash emphasis on both heads.
Use in equations and logical expressions requiring this arrow variant.
Indicate bidirectional flow with triple dash modifiers.
Include in architecture and system diagrams with specialized arrow notation.
Document workflows with two-headed triple dash transitions.
Reference bidirectional API or system links in HTML technical docs.
💡 Best Practices
Do
- Prefer
⤐for readable source markup - Distinguish ⤐ from ⤏ (
⤏, single-headed) and ↠ (↠) - Add
aria-labelor surrounding text for accessibility - Verify your font supports Supplemental Arrows-B (U+2910)
- Keep one entity style per project for consistency
Don’t
- Confuse
⤐(U+2910) with⤏(U+290F) - Use CSS
\2910inside 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
\u2910instead)
Key Takeaways
Four methods all render ⤐
⤐ ⤐ ⤐For CSS, use \2910 in the content property
Unicode U+2910 — RIGHTWARDS TWO-HEADED TRIPLE DASH ARROW
Prefer ⤐—not to be confused with ⤏ (U+290F)
Previous: Right Two Headed Arrow Vertical Stroke Next: Right Wave Arrow
❓ Frequently Asked Questions
⤐ (named), ⤐ (hex), ⤐ (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.⤐ is more readable in markup. Numeric references (⤐ or ⤐) are explicit. CSS escape \2910 belongs in stylesheets. All produce ⤐.⤐ is the named HTML entity for U+2910. Do not confuse it with ⤏, 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.
8 people found this page helpful
