HTML Entity for Not Identical To (≢)

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. A ≢ B 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
U+2262Mathematical Operators
≢Hexadecimal reference
≢Decimal reference
≢HTML5 named entity for U+2262
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)Complete HTML Example
A simple example showing ≢ using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\2262";
}
</style>
</head>
<body>
<p>Symbol (hex): ≢</p>
<p>Symbol (decimal): ≢</p>
<p>Symbol (named): ≢</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
U+2262 is widely supported wherever Unicode Mathematical Operators render correctly:
👀 Live Preview
See ≢ in identity and logic contexts:
🧠 How It Works
Named Entity
≢ is the HTML named entity for U+2262—the most readable choice when writing identity-relation markup.
Hexadecimal Code
≢ uses the Unicode hexadecimal value 2262 to display the not-identical symbol.
Decimal HTML Code
≢ uses the decimal Unicode value 8802 to display the same character.
CSS Entity
\2262 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce: ≢. Unicode U+2262 in Mathematical Operators (U+2200–U+22FF).
Use Cases
The ≢ symbol (≢) is commonly used in:
Expressing that two expressions are not identical in form or definition.
Formal proofs and definitions involving identity relations.
Textbooks, papers, and lecture notes published as HTML.
Courses covering formal methods and symbolic logic.
Interactive math modules with web-based notation.
Unicode charts and HTML entity documentation for math symbols.
💡 Best Practices
Do
- Use
≢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 ≢ (
≢) with ≠ (≠) - Confuse ≢ with ≡ (
≡, identical to) - Use padded Unicode notation like U+02262—the correct value is
U+2262 - Put CSS escape
\2262in HTML text nodes - Use
\02262in CSS—the correct escape is\2262
Key Takeaways
Three HTML references plus CSS all render ≢
≢ ≢ ≢For CSS stylesheets, use the escape in the content property
\2262Unicode U+2262 — NOT IDENTICAL TO
Mathematical Operators block (U+2200–U+22FF)
≢ is the preferred named entity for readable source markup
❓ Frequently Asked Questions
≢ (named), ≢ (hex), ≢ (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: ≢.≠) for value inequality and ≡ (≡) for identity.≢, ≢, or ≢) 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.≢ 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.
8 people found this page helpful
