HTML Entity for Left Arrow Double Vertical Stroke (⇺)

What You'll Learn
How to display the Left Arrow Double Vertical Stroke (⇺) in HTML using hexadecimal, decimal, and CSS escape methods. This symbol is U+21FA (LEFTWARDS ARROW WITH DOUBLE VERTICAL STROKE) in the Arrows block (U+2190–U+21FF)—a leftwards arrow with double vertical stroke, used in navigation, rewind-style UI, undo controls, and technical or diagrammatic content.
Render it with ⇺, ⇺, or CSS \21FA. There is no named HTML entity. Related: U+2190 (←, simple left arrow / ←), U+21FB (⇻, right arrow double vertical stroke).
⚡ Quick Reference — Left Arrow Double Vertical Stroke
U+21FAArrows block
⇺Hexadecimal reference
⇺Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+21FA
Hex code ⇺
HTML code ⇺
Named entity (none)
CSS code \21FA
Meaning Leftwards arrow with double vertical stroke
Related U+2190 = left arrow (←)
U+21FB = right arrow double vertical stroke (⇻)Complete HTML Example
A simple example showing the Left 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: "\21FA";
}
</style>
</head>
<body>
<p>Symbol using Hexadecimal: ⇺</p>
<p>Symbol using HTML Code: ⇺</p>
<p id="point">Symbol using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Left Arrow Double Vertical Stroke (⇺) renders in modern browsers when the font includes Arrows block glyphs:
👀 Live Preview
Left Arrow Double Vertical Stroke (⇺) in navigation and control contexts:
🧠 How It Works
Hexadecimal Code
⇺ uses the Unicode hexadecimal value 21FA to display the left arrow with double vertical stroke. The x prefix indicates hexadecimal format.
Decimal HTML Code
⇺ uses the decimal Unicode value 8698 to display the same character.
CSS Entity
\21FA is used in CSS stylesheets in the content property of pseudo-elements like ::after for navigation and control icons.
Same visual result
All three methods produce ⇺. Unicode U+21FA is in the Arrows block. Next: Left Arrow Headless Double Tail.
Use Cases
The Left Arrow Double Vertical Stroke (⇺) is commonly used in:
Indicate “back,” “rewind,” or “previous” in app headers, toolbars, and navigation controls.
Rewind or skip-back buttons in video, audio, or slideshow players.
Represent undo, reverse, or “go back” in editors and action toolbars.
Document keyboard shortcuts, flow diagrams, or notation that uses this arrow.
Show key labels or shortcut hints where a double-stroke left arrow is required.
Distinct left-arrow style in buttons, steppers, or wizards that need a double-stroke variant.
💡 Best Practices
Do
- Pair ⇺ with text (e.g., “Rewind” or “Back”) or
aria-labelfor accessibility - Use fonts that support the Arrows block (U+21FA)
- Set
<meta charset="utf-8"> - Add tooltips in UI so users understand rewind vs. simple back
- Keep one numeric style (hex or decimal) per project
- Use CSS
content: "\21FA"for repeated decorative icons
Don’t
- Expect a named HTML entity for U+21FA
- Use CSS
\21FAinside HTML text nodes - Confuse ⇺ with simple ← or ⤝ arrows
- Rely on the symbol alone without context in critical UI
- Use purely decorative arrows where a labeled button is clearer
Key Takeaways
Two HTML numeric references plus CSS for U+21FA
⇺ ⇺For CSS, use \21FA in the content property
Unicode U+21FA — LEFTWARDS ARROW WITH DOUBLE VERTICAL STROKE
Arrows block (U+2190–U+21FF) — no named entity
Previous: Left Arrow Black Diamond (⤝) Next: Left Arrow Headless Double Tail
❓ Frequently Asked Questions
⇺ (hex), ⇺ (decimal), or \21FA in CSS content. There is no named entity. All three methods render ⇺ correctly.U+21FA (LEFTWARDS ARROW WITH DOUBLE VERTICAL STROKE). Arrows block (U+2190–U+21FF). Hex 21FA, decimal 8698. A leftwards arrow with double vertical stroke.⇺ or ⇺) go in markup. The CSS escape \21FA is used in stylesheets, typically on ::before or ::after. Both produce ⇺.⇺) or decimal (⇺) codes. That is standard for such symbols in HTML.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
