HTML Entity for Right Double Arrow From Bar (⤇)

What You'll Learn
How to display the Right Double Arrow From Bar (⤇) in HTML using hexadecimal, decimal, and CSS escape methods. This symbol is U+2907 (RIGHTWARDS DOUBLE ARROW FROM BAR) in the Supplemental Arrows-B block (U+2900–U+297F)—a right-pointing double arrow from a vertical bar, used in navigation, UI elements, flow diagrams, and decorative arrows.
Render it with ⤇, ⤇, or CSS \2907. There is no named HTML entity. Related: U+21D2 (⇒, right double arrow / ⇒), U+21E5 (⇥, right arrow to bar / ⇥).
⚡ Quick Reference — Right Double Arrow From Bar
U+2907Supplemental Arrows-B
⤇Hexadecimal reference
⤇Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+2907
Hex code ⤇
HTML code ⤇
Named entity (none)
CSS code \2907
Meaning Rightwards double arrow from bar
Related U+21D2 = right double arrow (⇒)
U+21E5 = right arrow to bar (⇥)Complete HTML Example
A simple example showing the Right Double Arrow From Bar (⤇) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2907";
}
</style>
</head>
<body>
<p>Symbol using Hexadecimal: ⤇</p>
<p>Symbol using HTML Code: ⤇</p>
<p id="point">Symbol using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Right Double Arrow From Bar (⤇) renders in modern browsers when the font includes Supplemental Arrows-B glyphs:
👀 Live Preview
See the Right Double Arrow From Bar (⤇) in navigation and diagram contexts:
🧠 How It Works
Hexadecimal Code
⤇ uses the Unicode hexadecimal value 2907 to display the rightwards double arrow from bar. The x prefix indicates hexadecimal format.
Decimal HTML Code
⤇ uses the decimal Unicode value 10503 to display the same character.
CSS Entity
\2907 is used in CSS stylesheets in the content property of pseudo-elements like ::after for navigation and flow indicators.
Same visual result
All three methods produce ⤇. Unicode U+2907 is in Supplemental Arrows-B. Previous: Right Double Arrow (⇒). Next: Right Double Arrow Stroke.
Use Cases
The Right Double Arrow From Bar (⤇) is commonly used in:
Indicate “next” or “forward” with a distinct bar-style double arrow in menus and UI.
Show direction or flow where a double-arrow-from-bar variant is desired.
Point to the next step or “continue” in guides and wizards.
Decorative or functional right double-arrow-from-bar in buttons, labels, and icons.
Document “next” or “right” in shortcut hints with a bar-style arrow.
Next slide or next item controls in carousels and galleries.
💡 Best Practices
Do
- Use
⤇or⤇in HTML—no named entity exists - Pair ⤇ with text (“Next”, “Continue”) or
aria-labelfor accessibility - Use fonts that support Supplemental Arrows-B (U+2907)
- Set
<meta charset="utf-8"> - Keep one numeric style (hex or decimal) per project
- Distinguish ⤇ from ⇒ when bar-from variant matters
Don’t
- Expect a named HTML entity for U+2907
- Use CSS
\2907inside HTML text nodes - Confuse ⤇ with ⇒ (simple right double arrow /
⇒) - Confuse ⤇ with ⇥ (right arrow to bar /
⇥) - Assume legacy systems render Supplemental Arrows-B without testing
Key Takeaways
Two HTML numeric references plus CSS for U+2907
⤇ ⤇For CSS, use \2907 in the content property
Unicode U+2907 — RIGHTWARDS DOUBLE ARROW FROM BAR
Supplemental Arrows-B block (U+2900–U+297F) — no named entity
Previous: Right Double Arrow (⇒) Next: Right Double Arrow Stroke
❓ Frequently Asked Questions
⤇ (hex), ⤇ (decimal), or \2907 in CSS content. There is no named entity. All three methods render ⤇ correctly.U+2907 (RIGHTWARDS DOUBLE ARROW FROM BAR). Supplemental Arrows-B block (U+2900–U+297F). Hex 2907, decimal 10503. A right-pointing double arrow from a vertical bar.⤇ or ⤇) go in markup. The CSS escape \2907 is used in stylesheets, typically on ::before or ::after. Both produce ⤇.⤇) or decimal (⤇) codes. That is standard for such symbols in HTML.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
