HTML Entity for Not Identical To (≢)

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

What You'll Learn

How to display the Not Identical To symbol (≢) in HTML using named, hexadecimal, decimal, and CSS escape methods. This operator states that two expressions are not identical (e.g. AB means A is not identical to B).

This character is U+2262 (NOT IDENTICAL TO) in the Mathematical Operators block (U+2200–U+22FF). Render it with the named entity ≢, ≢, ≢, or CSS escape \2262. Compare with Identical To (≡, ≡) and Not Equal To (≠, ≠).

⚡ Quick Reference — Not Identical To

Unicode U+2262

Mathematical Operators

Hex Code ≢

Hexadecimal reference

HTML Code ≢

Decimal reference

Named Entity ≢

HTML5 named entity for U+2262

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2262
Hex code       ≢
HTML code      ≢
Named entity   ≢
CSS code       \2262
Meaning        Not identical to
Related        U+2261 = identical to (≡, ≡)
               U+2260 = not equal (≠, ≠)
               U+226D = not equivalent (≭, ≭)
Block          Mathematical Operators (U+2200–U+22FF)
1

Complete HTML Example

A simple example showing ≢ using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\2262";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x2262;</p>
<p>Symbol (decimal): &#8802;</p>
<p>Symbol (named): &nequiv;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2262 is widely supported wherever Unicode Mathematical Operators render correctly:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See ≢ in identity and logic contexts:

Identity relation AB means A is not identical to B.
Large glyph
Identity family ≡ identical   ≢ not identical   ≠ not equal
Example (2 + 3) ≢ (3 + 2) as syntactic terms
Entity refs &nequiv; &#x2262; &#8802; \2262

🧠 How It Works

1

Named Entity

&nequiv; is the HTML named entity for U+2262—the most readable choice when writing identity-relation markup.

HTML markup
2

Hexadecimal Code

&#x2262; uses the Unicode hexadecimal value 2262 to display the not-identical symbol.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\2262 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce: . Unicode U+2262 in Mathematical Operators (U+2200–U+22FF).

Use Cases

The ≢ symbol (&nequiv;) is commonly used in:

📐 Mathematics

Expressing that two expressions are not identical in form or definition.

📚 Logic

Formal proofs and definitions involving identity relations.

📚 Academia

Textbooks, papers, and lecture notes published as HTML.

💻 CS education

Courses covering formal methods and symbolic logic.

🎓 Online courses

Interactive math modules with web-based notation.

🌐 Reference guides

Unicode charts and HTML entity documentation for math symbols.

💡 Best Practices

Do

  • Use &nequiv; for readable identity-relation markup
  • Distinguish ≢ from ≡ (identical) and ≠ (not equal)
  • Pair ≢ with plain-language description on first use
  • Use numeric references in generated or XML-first workflows
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse ≢ (&nequiv;) with ≠ (&ne;)
  • Confuse ≢ with ≡ (&equiv;, identical to)
  • Use padded Unicode notation like U+02262—the correct value is U+2262
  • Put CSS escape \2262 in HTML text nodes
  • Use \02262 in CSS—the correct escape is \2262

Key Takeaways

1

Three HTML references plus CSS all render ≢

&#x2262; &#8802; &nequiv;
2

For CSS stylesheets, use the escape in the content property

\2262
3

Unicode U+2262 — NOT IDENTICAL TO

4

Mathematical Operators block (U+2200–U+22FF)

5

&nequiv; is the preferred named entity for readable source markup

❓ Frequently Asked Questions

Use &nequiv; (named), &#x2262; (hex), &#8802; (decimal), or \2262 in CSS content. All produce ≢.
U+2262 (NOT IDENTICAL TO). Mathematical Operators block (U+2200–U+22FF). Hex 2262, decimal 8802. Named entity: &nequiv;.
Use ≢ when your notation specifically means “not identical”—expressions that fail an identity relation. Use ≠ (&ne;) for value inequality and ≡ (&equiv;) for identity.
HTML references (&#8802;, &#x2262;, or &nequiv;) go directly in markup. The CSS escape \2262 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Yes. &nequiv; is the named HTML entity for U+2262 and is the most readable option in source markup.

Explore More HTML Entities!

Discover 1500+ HTML character references — arrows, symbols, 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