HTML Entity for Left Double Arrow Bar (⤆)

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

What You'll Learn

How to display the Left Double Arrow Bar (⤆) in HTML using hexadecimal, decimal, and CSS escape methods. This symbol is U+2906 (LEFTWARDS DOUBLE ARROW FROM BAR) in the Supplemental Arrows-B block (U+2900–U+297F)—a left-pointing double arrow from a vertical bar, used in navigation, UI elements, flow diagrams, and decorative arrows.

Render it with ⤆, ⤆, or CSS \2906. There is no named HTML entity. Related: U+21D0 (⇐, left double arrow / ⇐), U+21E4 (⇤, left arrow to bar / ⇤).

⚡ Quick Reference — Left Double Arrow Bar

Unicode U+2906

Supplemental Arrows-B

Hex Code ⤆

Hexadecimal reference

HTML Code ⤆

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2906
Hex code       ⤆
HTML code      ⤆
Named entity   (none)
CSS code       \2906
Meaning        Leftwards double arrow from bar
Related        U+21D0 = left double arrow (⇐)
               U+21E4 = left arrow to bar (⇤)
1

Complete HTML Example

A simple example showing the Left Double Arrow 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: "\2906";
  }
 </style>
</head>
<body>
<p>Symbol using Hexadecimal: &#x2906;</p>
<p>Symbol using HTML Code: &#10502;</p>
<p id="point">Symbol using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Left Double Arrow 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 Left Double Arrow Bar (⤆) in navigation and diagram contexts:

Back link ⤆ Previous
Flow step Step 2 ⤆ Step 1
From bar | ⤆ Start
Large glyph
Arrow comparison ⤆ ⇐ ⇤ ⇠
Numeric refs &#x2906; &#10502; \2906

🧠 How It Works

1

Hexadecimal Code

&#x2906; uses the Unicode hexadecimal value 2906 to display the leftwards double arrow from bar. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2906 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+2906 is in Supplemental Arrows-B. Previous: Left Double Arrow.

Use Cases

The Left Double Arrow Bar (⤆) is commonly used in:

🧭 Navigation

Indicate “back” or “previous” 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 previous step or “go back” in guides and wizards.

🎯 UI buttons

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

⌨ Shortcuts

Document “previous” or “left” in shortcut hints with a bar-style arrow.

🖼 Carousels

Previous slide or previous item controls in carousels and galleries.

💡 Best Practices

Do

  • Use &#10502; or &#x2906; in HTML—no named entity exists
  • Pair ⤆ with text (“Previous”, “Back”) or aria-label for accessibility
  • Use fonts that support Supplemental Arrows-B (U+2906)
  • 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+2906
  • Use CSS \2906 inside HTML text nodes
  • Confuse ⤆ with ⇐ (simple left double arrow / &lArr;)
  • Confuse ⤆ with ⇤ (left arrow to bar / &larrb;)
  • Assume legacy systems render Supplemental Arrows-B without testing

Key Takeaways

1

Two HTML numeric references plus CSS for U+2906

&#x2906; &#10502;
2

For CSS, use \2906 in the content property

3

Unicode U+2906 — LEFTWARDS DOUBLE ARROW FROM BAR

4

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

❓ Frequently Asked Questions

Use &#x2906; (hex), &#10502; (decimal), or \2906 in CSS content. There is no named entity. All three methods render ⤆ correctly.
U+2906 (LEFTWARDS DOUBLE ARROW FROM BAR). Supplemental Arrows-B block (U+2900–U+297F). Hex 2906, decimal 10502. A left-pointing double arrow from a vertical bar.
In navigation UI, flow diagrams, back or previous links with a bar variant, directional indicators, and any design that needs a left-pointing double arrow from a vertical bar.
HTML references (&#10502; or &#x2906;) go in markup. The CSS escape \2906 is used in stylesheets, typically on ::before or ::after. Both produce ⤆.
Named entities cover common characters; arrow symbols like U+2906 in Supplemental Arrows-B use numeric hex (&#x2906;) or decimal (&#10502;) 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