HTML Entity for Left Double Arrow Stroke (⇍)

What You'll Learn
How to display the Left Double Arrow Stroke (⇍) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+21CD (LEFTWARDS DOUBLE ARROW WITH STROKE) in the Arrows block (U+2190–U+21FF)—a left-pointing double arrow with a stroke through it, used in logic (negation), navigation, flow diagrams, and directional indicators.
Render it with ⇍ (named), ⇍, ⇍, or CSS \21CD. The n in ⇍ stands for negation. Related: U+21D0 (⇐, left double arrow / ⇐), U+2906 (⤆, left double arrow from bar).
⚡ Quick Reference — Left Double Arrow Stroke
U+21CDArrows block
⇍Hexadecimal reference
⇍Decimal reference
⇍Negation double arrow
Name Value
──────────── ──────────
Unicode U+21CD
Hex code ⇍
HTML code ⇍
Named entity ⇍
CSS code \21CD
Meaning Leftwards double arrow with stroke
Related U+21D0 = left double arrow (⇐)
U+2906 = left double arrow from bar (⤆)Complete HTML Example
A simple example showing the Left Double Arrow Stroke (⇍) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\21CD";
}
</style>
</head>
<body>
<p>Symbol using Hexadecimal: ⇍</p>
<p>Symbol using HTML Code: ⇍</p>
<p>Symbol using HTML Entity: ⇍</p>
<p id="point">Symbol using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Left Double Arrow Stroke (⇍) renders in modern browsers when the font includes Arrows block glyphs:
👀 Live Preview
See the Left Double Arrow Stroke (⇍) in logic and navigation contexts:
🧠 How It Works
Named HTML Entity
⇍ is the named entity for the Left Double Arrow Stroke (leftwards double arrow with stroke). The n stands for negation—easy to read in logic and navigation markup.
Hexadecimal Code
⇍ uses the Unicode hexadecimal value 21CD. The x prefix indicates hexadecimal format.
Decimal HTML Code
⇍ uses the decimal Unicode value 8653 for the same symbol.
CSS Entity
\21CD is used in CSS stylesheets in the content property of pseudo-elements like ::after.
Same visual result
All four methods produce ⇍. Unicode U+21CD is in the Arrows block. Previous: Left Double Arrow Bar.
Use Cases
The Left Double Arrow Stroke (⇍) is commonly used in:
Represent logical negation or non-implication in math and logic notation.
Indicate “back” or “previous” with a distinct stroked double arrow in menus and UI.
Show direction or negation in flowcharts and process steps.
Point to previous step or “go back” in guides and technical docs.
Decorative or functional left double arrow with stroke in buttons, labels, and icons.
Previous slide or previous item controls in carousels and galleries.
💡 Best Practices
Do
- Prefer
⇍in HTML for readability - Pair ⇍ with text (“Previous”, “Back”) or
aria-labelfor accessibility - Use fonts that support the Arrows block (U+21CD)
- Set
<meta charset="utf-8"> - Keep one encoding style per project for consistency
- Distinguish ⇍ from ⇐ when stroke vs plain double arrow matters
Don’t
- Confuse
⇍(U+21CD) with⇐(U+21D0, plain left double arrow) - Confuse
⇍with←(U+2190, simple left arrow) - Use CSS
\21CDinside HTML text nodes - Assume ⇍ always means logical negation without context
- Mix named and numeric entities inconsistently in the same component
Key Takeaways
Four ways to render U+21CD in HTML and CSS
⇍ ⇍ ⇍For CSS, use \21CD in the content property
Unicode U+21CD — LEFTWARDS DOUBLE ARROW WITH STROKE
Arrows block (U+2190–U+21FF) — named entity ⇍
Previous: Left Double Arrow Bar (⤆) Next: Left Double Arrow Vertical Stroke
❓ Frequently Asked Questions
⇍ (named), ⇍ (hex), ⇍ (decimal), or \21CD in CSS content. All four methods render ⇍ correctly.U+21CD (LEFTWARDS DOUBLE ARROW WITH STROKE). Arrows block (U+2190–U+21FF). Hex 21CD, decimal 8653. A left-pointing double arrow with a stroke through it.⇍, ⇍, ⇍) go in markup. The CSS escape \21CD is used in stylesheets, typically on ::before or ::after. Both produce ⇍.⇍ is the named HTML entity for U+21CD. The n stands for negation. You can also use ⇍ (decimal) or ⇍ (hex) and \21CD in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
