HTML Entity for Left Double Arrow Vertical Stroke (⤂)

What You'll Learn
How to display the Left Double Arrow Vertical Stroke (⤂) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+2902 (LEFTWARDS DOUBLE ARROW WITH VERTICAL STROKE) in the Supplemental Arrows-B block (U+2900–U+297F)—a left-pointing double arrow with a vertical stroke, used in navigation, UI elements, flow diagrams, and directional indicators.
Render it with ⤂ (named), ⤂, ⤂, or CSS \2902. Related: U+21CD (⇍, left double arrow with stroke / ⇍), U+2906 (⤆, left double arrow from bar).
⚡ Quick Reference — Left Double Arrow Vertical Stroke
U+2902Supplemental Arrows-B
⤂Hexadecimal reference
⤂Decimal reference
⤂Most readable option
Name Value
──────────── ──────────
Unicode U+2902
Hex code ⤂
HTML code ⤂
Named entity ⤂
CSS code \2902
Meaning Leftwards double arrow with vertical stroke
Related U+21CD = left double arrow with stroke (⇍)
U+2906 = left double arrow from bar (⤆)Complete HTML Example
A simple example showing the Left Double Arrow Vertical Stroke (⤂) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2902";
}
</style>
</head>
<body>
<p>Symbol using Hexadecimal: ⤂</p>
<p>Symbol using HTML Code: ⤂</p>
<p>Symbol using HTML Entity: ⤂</p>
<p id="point">Symbol using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Left Double Arrow Vertical Stroke (⤂) renders in modern browsers when the font includes Supplemental Arrows-B glyphs:
👀 Live Preview
See the Left Double Arrow Vertical Stroke (⤂) in navigation and diagram contexts:
🧠 How It Works
Named HTML Entity
⤂ is the named entity for the Left Double Arrow Vertical Stroke (leftwards double arrow with vertical stroke). Easy to read in navigation and UI markup.
Hexadecimal Code
⤂ uses the Unicode hexadecimal value 2902. The x prefix indicates hexadecimal format.
Decimal HTML Code
⤂ uses the decimal Unicode value 10498 for the same symbol.
CSS Entity
\2902 is used in CSS stylesheets in the content property of pseudo-elements like ::after.
Same visual result
All four methods produce ⤂. Unicode U+2902 is in Supplemental Arrows-B. Previous: Left Double Arrow Stroke.
Use Cases
The Left Double Arrow Vertical Stroke (⤂) is commonly used in:
Indicate “back” or “previous” with a distinct vertical-stroke double arrow in menus and UI.
Show direction or flow where a double-arrow-with-vertical-stroke variant is desired.
Point to previous step or “go back” in guides and wizards.
Decorative or functional left double arrow with vertical stroke in buttons, labels, and icons.
Document “previous” or “left” in shortcut hints with a vertical-stroke arrow.
Previous slide or previous item controls in carousels and galleries.
💡 Best Practices
Do
- Prefer
⤂in HTML for readability - Pair ⤂ with text (“Previous”, “Back”) or
aria-labelfor accessibility - Use fonts that support Supplemental Arrows-B (U+2902)
- Set
<meta charset="utf-8"> - Keep one encoding style per project for consistency
- Distinguish ⤂ from ⇍ when vertical vs horizontal stroke matters
Don’t
- Confuse
⤂(U+2902) with⇍(U+21CD, horizontal stroke) - Confuse
⤂with⇐(U+21D0, plain left double arrow) - Use CSS
\2902inside HTML text nodes - Assume legacy systems render Supplemental Arrows-B without testing
- Mix named and numeric entities inconsistently in the same component
Key Takeaways
Four ways to render U+2902 in HTML and CSS
⤂ ⤂ ⤂For CSS, use \2902 in the content property
Unicode U+2902 — LEFTWARDS DOUBLE ARROW WITH VERTICAL STROKE
Supplemental Arrows-B block (U+2900–U+297F) — named entity ⤂
Previous: Left Double Arrow Stroke (⇍) Next: Left Double Dash Arrow
❓ Frequently Asked Questions
⤂ (named), ⤂ (hex), ⤂ (decimal), or \2902 in CSS content. All four methods render ⤂ correctly.U+2902 (LEFTWARDS DOUBLE ARROW WITH VERTICAL STROKE). Supplemental Arrows-B block (U+2900–U+297F). Hex 2902, decimal 10498. A left-pointing double arrow with a vertical stroke.⤂, ⤂, ⤂) go in markup. The CSS escape \2902 is used in stylesheets, typically on ::before or ::after. Both produce ⤂.⤂ is the named HTML entity for U+2902. You can also use ⤂ (decimal) or ⤂ (hex) and \2902 in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
