HTML Entity for Right Two Headed Arrow From Bar (⤅)

What You'll Learn
How to display the Right Two Headed Arrow From Bar (⤅) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+2905 (RIGHTWARDS TWO HEADED ARROW FROM BAR) in the Supplemental Arrows-B block (U+2900–U+297F)—a two-headed arrow emerging from a bar, used for bidirectional flow, mathematical notation, and diagram emphasis.
Render it with ⤅ (named), ⤅, ⤅, or CSS \2905. Do not confuse ⤅ with U+21A0 (↠, plain two headed arrow / ↠) or U+2901 (⤁, double vertical stroke variant).
⚡ Quick Reference — Right Two Headed Arrow From Bar
U+2905Supplemental Arrows-B
⤅Hexadecimal reference
⤅Decimal reference
⤅Most readable option
Name Value
──────────── ──────────
Unicode U+2905
Hex code ⤅
HTML code ⤅
Named entity ⤅
CSS code \2905
Meaning Two headed arrow from bar (emerges from vertical bar)
Related U+21A0 = rightwards two headed arrow (↠ / ↠)
U+2901 = two headed arrow double vertical stroke (⤁)Complete HTML Example
A simple example showing the Right Two Headed Arrow From Bar (⤅) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2905";
}
</style>
</head>
<body>
<p>Symbol (hex): ⤅</p>
<p>Symbol (decimal): ⤅</p>
<p>Symbol (named): ⤅</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The Right Two Headed Arrow From Bar (⤅) is universally supported in all modern browsers when the font includes Supplemental Arrows-B glyphs:
👀 Live Preview
See the Right Two Headed Arrow From Bar (⤅) rendered live in different contexts:
🧠 How It Works
Hexadecimal Code
⤅ uses the Unicode hexadecimal value 2905 for the right two headed arrow from bar. The x prefix indicates hexadecimal format.
Decimal HTML Code
⤅ uses the decimal Unicode value 10501 to display the same character.
Named Entity
⤅ is the semantic named entity — the easiest to read in source HTML and the most self-descriptive option.
CSS Entity
\2905 is used in CSS stylesheets in the content property of pseudo-elements like ::after.
Same visual result
All four methods produce ⤅. Unicode U+2905 is in the Supplemental Arrows-B block. Previous: Right Two Headed Arrow Double Vertical Stroke.
Use Cases
The Right Two Headed Arrow From Bar (⤅) is commonly used in:
Show two-way links emerging from a bar, boundary, or partition.
Use in equations and logical expressions with from-bar arrow notation.
Mark flow splitting from a boundary line in process diagrams.
Include in architecture diagrams with bar-origin connections.
Document workflows where paths branch from a shared boundary.
Reference bidirectional system links in HTML technical docs.
💡 Best Practices
Do
- Use
⤅for readable source markup - Add
aria-labelor surrounding text for accessibility - Distinguish ⤅ (from bar) from ↠ (plain) and ⤁ (double stroke)
- Verify your font supports Supplemental Arrows-B (U+2905)
- Keep one entity style per project for consistency
Don’t
- Confuse ⤅ with ↠ (plain two headed) or ⤁ (double vertical stroke)
- Confuse
⤅with unrelated entities (it is U+2905 only) - Use CSS
\2905inside 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
Key Takeaways
Four HTML references plus CSS all render ⤅
⤅ ⤅ ⤅For CSS, use \2905 in the content property
Unicode U+2905 — RIGHTWARDS TWO HEADED ARROW FROM BAR
Prefer ⤅ for readability—it’s the named HTML entity
Previous: Right Two Headed Arrow Double Vertical Stroke Next: Right Two Headed Arrow Tail
❓ Frequently Asked Questions
⤅ (hex), ⤅ (decimal), ⤅ (named), or \2905 in CSS content. All four methods render ⤅ correctly.U+2905 (RIGHTWARDS TWO HEADED ARROW FROM BAR). Supplemental Arrows-B block (U+2900–U+297F). Hex 2905, decimal 10501. A two-headed arrow emerging from a vertical bar.⤅, ⤅, or ⤅) go in markup. The CSS escape \2905 is used in stylesheets, typically on ::before or ::after. Both produce ⤅.⤅ is the named HTML entity for U+2905. You can also use ⤅ (decimal) or ⤅ (hex) and \2905 in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
