HTML Entity for Left Arrow Bar (↤)

What You'll Learn
How to display the Left Arrow Bar (↤) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+21A4 (LEFTWARDS ARROW FROM BAR) in the Arrows block (U+2190–U+21FF)—the leftwards arrow from bar, used in navigation, UI design, keyboard notation, and logic or assignment-style notation (maps to left).
Render it with ↤ (named), ↤, ↤, or CSS \21A4. Related: U+2190 (←, simple left arrow), U+21A6 (↦, rightwards arrow from bar / ↦).
⚡ Quick Reference — Left Arrow Bar
U+21A4Arrows block
↤Hexadecimal reference
↤Decimal reference
↤Most readable option
Name Value
──────────── ──────────
Unicode U+21A4
Hex code ↤
HTML code ↤
Named entity ↤
CSS code \21A4
Meaning Leftwards arrow from bar
Related U+2190 = left arrow (←)
U+21A6 = right arrow from bar (↦)Complete HTML Example
A simple example showing the Left Arrow Bar (↤) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\21A4";
}
</style>
</head>
<body>
<p>Left Arrow Bar using Hexadecimal: ↤</p>
<p>Left Arrow Bar using HTML Code: ↤</p>
<p>Left Arrow Bar using HTML Entity: ↤</p>
<p id="point">Left Arrow Bar using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Left Arrow Bar (↤) is widely supported in all modern browsers—it is part of the standard Arrows block:
👀 Live Preview
See the Left Arrow Bar (↤) rendered in common contexts:
🧠 How It Works
Named HTML Entity
↤ is the named entity for the Left Arrow Bar (leftwards arrow from bar). It is easy to read in navigation and logic markup.
Hexadecimal Code
↤ uses the Unicode hexadecimal value 21A4. The x prefix indicates hexadecimal format.
Decimal HTML Code
↤ uses the decimal Unicode value 8612 for the same leftwards arrow from bar character.
CSS Entity
\21A4 is used in CSS stylesheets in the content property of pseudo-elements like ::after.
Same visual result
All four methods produce the Left Arrow Bar: ↤. Unicode U+21A4 sits in the Arrows block. Next: Left Arrow Bar Black Diamond.
Use Cases
The Left Arrow Bar (↤) is commonly used in:
Back, return, or left direction in app headers, breadcrumbs, and navigation controls.
Key labels and shortcut hints in help text and documentation.
Maps-to-left or assignment-from notation in logic, type theory, or formal specs.
Keyboard layouts, API semantics, or specification language using this arrow.
Previous step or go-back in multi-step forms and onboarding flows.
Toolbar buttons, list navigation, or controls indicating left or reverse direction.
💡 Best Practices
Do
- Prefer
↤in HTML for readable source markup - Pair the arrow with text (e.g. “↤ Return”) or use
aria-label - Keep one entity style consistent across your project
- Set
<meta charset="utf-8"> - Use CSS
\21A4for decorative arrows in pseudo-elements - Test arrow rendering across browsers and fonts
Don’t
- Use the symbol alone without context for interactive controls
- Confuse ↤ (from bar left) with ← (simple left) or ↦ (from bar right)
- Mix entity styles randomly in one file
- Use CSS
\21A4inside HTML text nodes - Rely on the arrow as the only accessibility cue
Key Takeaways
Four ways to render U+21A4 in HTML and CSS
↤ ↤ ↤For CSS, use \21A4 in the content property
Unicode U+21A4 — LEFTWARDS ARROW FROM BAR
Arrows block (U+2190–U+21FF)
Previous: Left Arrow Above Tilde Operator (⥳) Next: Left Arrow Bar Black Diamond
❓ Frequently Asked Questions
↤ (named), ↤ (hex), ↤ (decimal), or \21A4 in CSS content. All four methods render ↤.U+21A4 (LEFTWARDS ARROW FROM BAR). Arrows block (U+2190–U+21FF). Hex 21A4, decimal 8612. Used in navigation, UI, and logic (maps to left).↤, ↤, ↤) go in markup. The CSS escape \21A4 is used in stylesheets, typically on ::before or ::after. Both render ↤.↤ is the named HTML entity for U+21A4. You can also use ↤ (decimal) or ↤ (hex) and \21A4 in CSS—all equivalent in modern browsers.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
