HTML Entity for Left Right Double Arrow Stroke (⇎)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+21CE

What You'll Learn

How to display the Left Right Double Arrow Stroke (⇎) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+21CE (LEFT RIGHT DOUBLE ARROW WITH STROKE) in the Arrows block (U+2190–U+21FF)—a left-right double arrow with a vertical stroke through it, often used to mean “not equivalent” or negation of the bidirectional double arrow (⇔) in logic and set theory.

Render it with ⇎ (named), ⇎, ⇎, or CSS \21CE. Do not confuse ⇎ with U+21D4 (⇔, equivalence / ⇔) or U+21AE (↮, single double arrow stroke / ↮).

⚡ Quick Reference — Left Right Double Arrow Stroke

Unicode U+21CE

Arrows block

Hex Code ⇎

Hexadecimal reference

HTML Code ⇎

Decimal reference

Named Entity ⇎

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21CE
Hex code       ⇎
HTML code      ⇎
Named entity   ⇎
CSS code       \21CE
Meaning        Left right double arrow with stroke (not equivalent)
Related        U+21D4 = left right double arrow (⇔)
               U+21AE = left right arrow stroke (↮)
1

Complete HTML Example

A simple example showing the Left Right Double Arrow Stroke (⇎) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\21CE";
  }
 </style>
</head>
<body>
<p>Arrow (hex): &#x21ce;</p>
<p>Arrow (decimal): &#8654;</p>
<p>Arrow (named): &nhArr;</p>
<p id="point">Arrow (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Left Right Double Arrow Stroke (⇎) is universally supported in all modern browsers when the font includes Arrows block glyphs:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Left Right Double Arrow Stroke (⇎) rendered live in different contexts:

Inline text A ⇎ B means A is not equivalent to B.
Large glyph
Logic notation PQ — not iff
Comparison ⇔ vs ⇎
Arrow comparison ⇔ ⇎ ↮
Numeric refs &nhArr; &#x21CE; &#8654; \21CE

🧠 How It Works

1

Hexadecimal Code

&#x21CE; uses the Unicode hexadecimal value 21CE for the left right double arrow with stroke. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#8654; uses the decimal Unicode value 8654 to display the same character.

HTML markup
3

Named Entity

&nhArr; is the semantic named entity — the easiest to read in source HTML and the most self-descriptive option.

HTML markup
4

CSS Entity

\21CE is used in CSS stylesheets in the content property of pseudo-elements like ::after.

CSS stylesheet
=

Same visual result

All four methods produce . Unicode U+21CE is in the Arrows block. Previous: Left Right Double Arrow.

Use Cases

The Left Right Double Arrow Stroke (⇎) is commonly used in:

📜 Logic & Not Equivalent

Indicate that logical equivalence does not hold (e.g. A ⇎ B).

📐 Set Theory & Math

Denote “not iff” or negation of bidirectional implication.

📄 Technical Documentation

Show that two items are not equivalent or not bidirectionally linked.

📚 Proofs & Formal Systems

Express that a two-way relation is explicitly negated.

📜 Academic & Research

Use in papers for “not equivalent” or negation of ⇔.

📊 Diagrams & Notation

Mark relations that are explicitly not bidirectional equivalence.

💡 Best Practices

Do

  • Use &nhArr; for readable source markup
  • Add aria-label or surrounding text for accessibility
  • Verify your font supports the Arrows block (U+21CE)
  • Keep one entity style per project for consistency
  • Contrast with ⇔ when explaining negation of equivalence

Don’t

  • Confuse ⇎ (not equivalent) with ⇔ (equivalence)
  • Use CSS \21CE inside HTML text nodes
  • Assume all fonts render the stroked double arrow identically
  • Mix entity styles randomly in one file
  • Use the symbol without explaining its negation meaning on first use

Key Takeaways

1

Three HTML references plus CSS all render ⇎

&#x21CE; &#8654; &nhArr;
2

For CSS, use \21CE in the content property

3

Unicode U+21CE — LEFT RIGHT DOUBLE ARROW WITH STROKE

4

Prefer &nhArr; for readability—it’s the named HTML entity

❓ Frequently Asked Questions

Use &#x21CE; (hex), &#8654; (decimal), &nhArr; (named), or \21CE in CSS content. All four methods render ⇎ correctly.
U+21CE (LEFT RIGHT DOUBLE ARROW WITH STROKE). Arrows block (U+2190–U+21FF). Hex 21CE, decimal 8654. Used for a left-right double arrow with a vertical stroke, often meaning not equivalent or negation.
In logic, set theory, and technical documentation to indicate that an equivalence or bidirectional relation does not hold (e.g. A ⇎ B meaning A is not equivalent to B).
HTML references (&#8654;, &#x21CE;, or &nhArr;) go in markup. The CSS escape \21CE is used in stylesheets, typically on ::before or ::after. Both produce ⇎.
Yes. &nhArr; is the named HTML entity for U+21CE. You can also use &#8654; (decimal) or &#x21CE; (hex) and \21CE in CSS.

Explore More HTML Entities!

Discover 1500+ HTML character references — arrows, symbols, math operators, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful