HTML Entity for Left Right Open Headed Arrow (⇿)

What You'll Learn
How to display the Left Right Open Headed Arrow (⇿) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+21FF (LEFT RIGHT OPEN-HEADED ARROW) in the Arrows block (U+2190–U+21FF)—a bidirectional arrow with open (hollow) arrowheads at both ends, often used in navigation, diagrams, and technical notation.
Render it with ⇿ (named), ⇿, ⇿, or CSS \21FF. Do not confuse ⇿ with U+2194 (↔, solid left right arrow / ↔) or U+21D4 (⇔, double arrow / ⇔).
⚡ Quick Reference — Left Right Open Headed Arrow
U+21FFArrows block
⇿Hexadecimal reference
⇿Decimal reference
⇿Most readable option
Name Value
──────────── ──────────
Unicode U+21FF
Hex code ⇿
HTML code ⇿
Named entity ⇿
CSS code \21FF
Meaning Left right open-headed arrow
Related U+2194 = left right arrow (↔)
U+21D4 = left right double arrow (⇔)Complete HTML Example
A simple example showing the Left Right Open Headed Arrow (⇿) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\21FF";
}
</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 Right Open Headed Arrow (⇿) is universally supported in all modern browsers when the font includes Arrows block glyphs:
👀 Live Preview
See the Left Right Open Headed Arrow (⇿) rendered live in different contexts:
🧠 How It Works
Hexadecimal Code
⇿ uses the Unicode hexadecimal value 21FF for the left right open-headed arrow. The x prefix indicates hexadecimal format.
Decimal HTML Code
⇿ uses the decimal Unicode value 8703 to display the same character.
Named Entity
⇿ is the semantic named entity — the easiest to read in source HTML and the most self-descriptive option.
CSS Entity
\21FF is used in CSS stylesheets in the content property of pseudo-elements like ::after.
Same visual result
All four methods produce ⇿. Unicode U+21FF is the last code point in the Arrows block. Previous: Left Right Double Arrow Vertical Stroke.
Use Cases
The Left Right Open Headed Arrow (⇿) is commonly used in:
Indicate two-way navigation, expand/collapse, or bidirectional controls with open-headed style.
Show bidirectional flow or relation between nodes with a distinct open-headed arrow.
Indicate two-way sync, reversible mapping, or bidirectional relation in specs.
Represent equivalence or reversible relation with an open-headed arrow variant.
Use in papers and textbooks for bidirectional notation with open heads.
Display in icon sets or design systems for “both directions” or “two-way” actions.
💡 Best Practices
Do
- Use
⇿for readable source markup - Add
aria-labelor surrounding text for accessibility - Verify your font supports the Arrows block (U+21FF)
- Keep one entity style per project for consistency
- Provide context when the symbol denotes bidirectional flow or relation
Don’t
- Confuse ⇿ (open-headed) with ↔ (solid left right arrow)
- Use CSS
\21FFinside HTML text nodes - Assume all fonts render open arrowheads identically
- Mix entity styles randomly in one file
- Use the symbol without explaining its bidirectional meaning on first use
Key Takeaways
Three HTML references plus CSS all render ⇿
⇿ ⇿ ⇿For CSS, use \21FF in the content property
Unicode U+21FF — LEFT RIGHT OPEN-HEADED ARROW
Prefer ⇿ for readability—it’s the named HTML entity
Previous: Left Right Double Arrow Vertical Stroke Next: Left Right Wave Arrow
❓ Frequently Asked Questions
⇿ (hex), ⇿ (decimal), ⇿ (named), or \21FF in CSS content. All four methods render ⇿ correctly.U+21FF (LEFT RIGHT OPEN-HEADED ARROW). Arrows block (U+2190–U+21FF). Hex 21FF, decimal 8703. Shows a bidirectional arrow with open (hollow) arrowheads at both ends.⇿, ⇿, or ⇿) go in markup. The CSS escape \21FF is used in stylesheets, typically on ::before or ::after. Both produce ⇿.⇿ is the named HTML entity for U+21FF. You can also use ⇿ (decimal) or ⇿ (hex) and \21FF in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
