HTML Entity for Left Two Headed Arrow (↞)

What You'll Learn
How to display the Left Two Headed Arrow (↞) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+219E (LEFTWARDS TWO HEADED ARROW) in the Arrows block (U+2190–U+21FF)—a two-headed leftward arrow used in navigation UI, technical documentation, mathematical notation (surjection), and flowcharts.
Render it with ↞ (named), ↞, ↞, or CSS \219E. Pair with U+219F (↟, right two headed arrow / ↠). Do not confuse ↞ with ← (single leftwards arrow ←).
⚡ Quick Reference — Left Two Headed Arrow
U+219EArrows block
↞Hexadecimal reference
↞Decimal reference
↞Most readable option
Name Value
──────────── ──────────
Unicode U+219E
Hex code ↞
HTML code ↞
Named entity ↞
CSS code \219E
Meaning Leftwards two headed arrow
Related U+219F = right two headed arrow (↟ / ↠)
U+2190 = leftwards arrow (← / ←)Complete HTML Example
A simple example showing the Left Two Headed Arrow (↞) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\219E";
}
</style>
</head>
<body>
<p>Arrow (hex): ↞</p>
<p>Arrow (decimal): ↞</p>
<p>Arrow (named): ↞</p>
<p id="point">Arrow (CSS): </p>
</body>
</html>🌐 Browser Support
The Left Two Headed Arrow (↞) is universally supported in all modern browsers when the font includes Arrows block glyphs:
👀 Live Preview
See the Left Two Headed Arrow (↞) rendered live in different contexts:
🧠 How It Works
Hexadecimal Code
↞ uses the Unicode hexadecimal value 219E for the leftwards two headed arrow. The x prefix indicates hexadecimal format.
Decimal HTML Code
↞ uses the decimal Unicode value 8606 to display the same character.
Named Entity
↞ is the semantic named entity — not to be confused with ← (single leftwards arrow ←).
CSS Entity
\219E is used in CSS stylesheets in the content property of pseudo-elements like ::after.
Same visual result
All four methods produce ↞. Unicode U+219E is in the Arrows block. Previous: Left Triple Dash Arrow.
Use Cases
The Left Two Headed Arrow (↞) is commonly used in:
Indicate “back” or strong leftward navigation (e.g. fast cursor left) in menus and UI controls.
Show surjection, relations, or bidirectional steps in tutorials and technical writing.
Represent surjection or two-headed leftward arrow in equations and formal notation.
Display flow direction or bidirectional links in process diagrams and flowcharts.
Use in custom buttons, pagination, or editor controls for “previous” or “move left” actions.
Use in dashboards, wizards, and multi-step forms for directional or bidirectional cues.
💡 Best Practices
Do
- Prefer
↞when writing HTML by hand for readability - Pair the symbol with text or
aria-label(e.g. “Go back”) for accessibility - Verify your font supports the Arrows block (U+219E)
- Keep one entity style per project for consistency
- Use the two-headed style to distinguish from single-headed ←
Don’t
- Confuse
↞(↞) with←(←, single leftwards arrow) - Confuse ↞ with ↟ (right two headed /
↠) - Use CSS
\219Einside HTML text nodes - Use the symbol alone without explaining its left/back meaning
- Mix entity styles randomly in one file
Key Takeaways
Four methods all render ↞
↞ ↞ ↞For CSS, use \219E in the content property
Unicode U+219E — LEFTWARDS TWO HEADED ARROW
↞ is not the same as ← (←)
Previous: Left Triple Dash Arrow Next: Left Wave Arrow
❓ Frequently Asked Questions
↞ (named), ↞ (hex), ↞ (decimal), or \219E in CSS content. All four methods render ↞ correctly.U+219E (LEFTWARDS TWO HEADED ARROW). Arrows block (U+2190–U+21FF). Hex 219E, decimal 8606. Used for leftward direction, fast cursor left, or bidirectional movement in UI and notation.↞, ↞, or ↞) go in markup. The CSS escape \219E is used in stylesheets, typically on ::before or ::after. Both produce ↞.↞ is the named HTML entity for U+219E. Do not confuse it with ← (←, single leftwards arrow). You can also use ↞ (decimal), ↞ (hex), or \219E in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
