HTML Entity for Right Double Arrow From Bar (⤇)

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

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

Unicode U+2907

Supplemental Arrows-B

Hex Code ⤇

Hexadecimal reference

HTML Code ⤇

Decimal reference

Named Entity

Use numeric codes only

Reference Table
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 (⇥)
1

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:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2907";
  }
 </style>
</head>
<body>
<p>Symbol using Hexadecimal: &#x2907;</p>
<p>Symbol using HTML Code: &#10503;</p>
<p id="point">Symbol using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Right Double Arrow From Bar (⤇) renders in 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 Double Arrow From Bar (⤇) in navigation and diagram contexts:

Next link Next ⤇
Flow step Step 1 ⤇ Step 2
From bar Start ⤇ |
Large glyph
Arrow comparison ⤆ ⇒ ⇥ ⇢
Numeric refs &#x2907; &#10503; \2907

🧠 How It Works

1

Hexadecimal Code

&#x2907; uses the Unicode hexadecimal value 2907 to display the rightwards double arrow from bar. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2907 is used in CSS stylesheets in the content property of pseudo-elements like ::after for navigation and flow indicators.

CSS stylesheet
=

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:

🧭 Navigation

Indicate “next” or “forward” with a distinct bar-style double arrow in menus and UI.

📊 Flow diagrams

Show direction or flow where a double-arrow-from-bar variant is desired.

📚 Tutorials

Point to the next step or “continue” in guides and wizards.

🎯 UI buttons

Decorative or functional right double-arrow-from-bar in buttons, labels, and icons.

⌨ Shortcuts

Document “next” or “right” in shortcut hints with a bar-style arrow.

🖼 Carousels

Next slide or next item controls in carousels and galleries.

💡 Best Practices

Do

  • Use &#10503; or &#x2907; in HTML—no named entity exists
  • Pair ⤇ with text (“Next”, “Continue”) or aria-label for 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 \2907 inside HTML text nodes
  • Confuse ⤇ with ⇒ (simple right double arrow / &rArr;)
  • Confuse ⤇ with ⇥ (right arrow to bar / &rarrb;)
  • Assume legacy systems render Supplemental Arrows-B without testing

Key Takeaways

1

Two HTML numeric references plus CSS for U+2907

&#x2907; &#10503;
2

For CSS, use \2907 in the content property

3

Unicode U+2907 — RIGHTWARDS DOUBLE ARROW FROM BAR

4

Supplemental Arrows-B block (U+2900–U+297F) — no named entity

❓ Frequently Asked Questions

Use &#x2907; (hex), &#10503; (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.
In navigation UI, flow diagrams, next or forward links with a bar variant, directional indicators, and any design that needs a right-pointing double arrow from a vertical bar.
HTML references (&#10503; or &#x2907;) go in markup. The CSS escape \2907 is used in stylesheets, typically on ::before or ::after. Both produce ⤇.
Named entities cover common characters; arrow symbols like U+2907 in Supplemental Arrows-B use numeric hex (&#x2907;) or decimal (&#10503;) codes. That is standard for such symbols in HTML.

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