HTML Entity for Left Right Arrow Double Vertical Stroke (⇼)

What You'll Learn
How to display the Left Right Arrow Double Vertical Stroke (⇼) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+21FC (LEFT RIGHT ARROW WITH DOUBLE VERTICAL STROKE) in the Arrows block (U+2190–U+21FF)—a bidirectional arrow with a double vertical stroke, commonly used in mathematical notation, logic, and diagrams for equivalence or reversible relations.
Render it with ⇼, ⇼, or CSS escape \21FC. There is no named HTML entity. Do not confuse ⇼ with U+2194 (↔, simple left right arrow / ↔) or U+21CE (⇎, left right double arrow with stroke).
⚡ Quick Reference — Left Right Arrow Double Vertical Stroke
U+21FCArrows block
⇼Hexadecimal reference
⇼Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+21FC
Hex code ⇼
HTML code ⇼
Named entity (none)
CSS code \21FC
Meaning Left right arrow with double vertical stroke
Related U+2194 = left right arrow (↔)
U+21CE = left right double arrow with stroke (⇎)Complete HTML Example
A simple example showing the Left Right Arrow Double Vertical Stroke (⇼) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\21FC";
}
</style>
</head>
<body>
<p>Arrow (hex): ⇼</p>
<p>Arrow (decimal): ⇼</p>
<p id="point">Arrow (CSS): </p>
</body>
</html>🌐 Browser Support
The Left Right Arrow Double Vertical Stroke (⇼) is universally supported in all modern browsers when the font includes Arrows block glyphs:
👀 Live Preview
See the Left Right Arrow Double Vertical Stroke (⇼) rendered live in different contexts:
🧠 How It Works
Hexadecimal Code
⇼ uses the Unicode hexadecimal value 21FC for the left right arrow with double vertical stroke. The x prefix indicates hexadecimal format.
Decimal HTML Code
⇼ uses the decimal Unicode value 8700 to display the same character.
CSS Entity
\21FC is used in CSS stylesheets in the content property of pseudo-elements like ::after.
Same visual result
All three methods produce ⇼. Unicode U+21FC is in the Arrows block. Previous: Left Right Arrow Below.
Use Cases
The Left Right Arrow Double Vertical Stroke (⇼) is commonly used in:
Represent equivalence or bidirectional relations with a double vertical stroke in equations.
Denote reversible or symmetric relations in logic and proof notation.
Show two-way flow or equivalence between nodes with a distinct arrow style.
Indicate bidirectional mapping or equivalence in specs and manuals.
Use in papers and textbooks for specialized arrow notation with double stroke.
Display in web-based math editors and equation renderers that support this symbol.
💡 Best Practices
Do
- Use
⇼or⇼in HTML—no named entity exists - Add
aria-labelor surrounding text for accessibility - Verify your font supports the Arrows block (U+21FC)
- Keep one numeric style (hex or decimal) per project
- Provide context when the symbol denotes equivalence or reversibility
Don’t
- Expect a named HTML entity for U+21FC
- Use CSS
\21FCinside HTML text nodes - Confuse ⇼ (double vertical stroke) with ↔ (simple left right arrow)
- Assume all fonts render the double vertical stroke identically
- Mix entity styles randomly in one file
Key Takeaways
Two HTML numeric references plus CSS for U+21FC
⇼ ⇼For CSS, use \21FC in the content property
Unicode U+21FC — LEFT RIGHT ARROW WITH DOUBLE VERTICAL STROKE
Arrows block (U+2190–U+21FF) — no named entity
Previous: Left Right Arrow Below Next: Left Right Arrow Stroke
❓ Frequently Asked Questions
⇼ (hex), ⇼ (decimal), or \21FC in CSS content. There is no named entity. All three methods render ⇼ correctly.U+21FC (LEFT RIGHT ARROW WITH DOUBLE VERTICAL STROKE). Arrows block (U+2190–U+21FF). Hex 21FC, decimal 8700. Used for bidirectional arrows with a double vertical stroke in notation.⇼ or ⇼) go in markup. The CSS escape \21FC is used in stylesheets, typically on ::before or ::after. Both produce ⇼.⇼) or decimal (⇼) in HTML, or \21FC in CSS content.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
