HTML Entity for Not Equivalent To (≭)

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

What You'll Learn

How to display the Not Equivalent To symbol (≭) in HTML using named, hexadecimal, decimal, and CSS escape methods. This mathematical relation operator states that two expressions or relations are not equivalent (e.g. AB).

This character is U+226D (NOT EQUIVALENT TO) in the Mathematical Operators block (U+2200–U+22FF). Render it with the named entity ≭, ≭, ≭, or CSS escape \226D. Compare with Not Equal To (≠, ≠) and Equivalent To (≍, ≍).

⚡ Quick Reference — Not Equivalent To

Unicode U+226D

Mathematical Operators

Hex Code ≭

Hexadecimal reference

HTML Code ≭

Decimal reference

Named Entity ≭

HTML5 named entity for U+226D

Reference Table
Name           Value
────────────   ──────────
Unicode        U+226D
Hex code       ≭
HTML code      ≭
Named entity   ≭
CSS code       \226D
Meaning        Not equivalent to
Related        U+224D = equivalent to (≍, ≍)
               U+2260 = not equal (≠, ≠)
               U+2261 = identical to (≡, ≡)
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: "\226D";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x226D;</p>
<p>Symbol (decimal): &#8813;</p>
<p>Symbol (named): &NotCupCap;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

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

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

👀 Live Preview

See ≭ in mathematical relation and logic contexts:

Relation PQ means P is not equivalent to Q.
Large glyph
Relation family ≍ equivalent   ≭ not equivalent   ≠ not equal
Example (sin x)2 + (cos x)2 ≭ 2
Entity refs &NotCupCap; &#x226D; &#8813; \226D

🧠 How It Works

1

Named Entity

&NotCupCap; is the HTML named entity for U+226D—the most readable choice when writing relation markup.

HTML markup
2

Hexadecimal Code

&#x226D; uses the Unicode hexadecimal value 226D to display the not-equivalent symbol.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\226D 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+226D in Mathematical Operators (U+2200–U+22FF).

Use Cases

The ≭ symbol (&NotCupCap;) is commonly used in:

📐 Mathematics

Expressing that two relations or expressions are not equivalent.

📚 Logic

Formal proofs and definitions involving equivalence relations.

📚 Academia

Textbooks, papers, and lecture notes published as HTML.

⚙ Analysis

Asymptotic and equivalence notation in mathematical analysis.

🎓 Online courses

Interactive math modules with web-based notation.

🌐 Reference guides

Unicode charts and HTML entity documentation for math symbols.

💡 Best Practices

Do

  • Use &NotCupCap; for readable relation markup
  • Distinguish ≭ from ≠ (not equal) and ≍ (equivalent to)
  • 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 ≭ (&NotCupCap;) with ≠ (&ne;)
  • Confuse ≭ with ≍ (&asympeq;, equivalent to—a different code point)
  • Use padded Unicode notation like U+0226D—the correct value is U+226D
  • Put CSS escape \226D in HTML text nodes
  • Use \0226D in CSS—the correct escape is \226D

Key Takeaways

1

Three HTML references plus CSS all render ≭

&#x226D; &#8813; &NotCupCap;
2

For CSS stylesheets, use the escape in the content property

\226D
3

Unicode U+226D — NOT EQUIVALENT TO

4

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

5

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

❓ Frequently Asked Questions

Use &NotCupCap; (named), &#x226D; (hex), &#8813; (decimal), or \226D in CSS content. All produce ≭.
U+226D (NOT EQUIVALENT TO). Mathematical Operators block (U+2200–U+22FF). Hex 226D, decimal 8813. Named entity: &NotCupCap;.
Use ≭ when your notation specifically means “not equivalent” in a relational sense. Use ≠ (&ne;) for strict inequality of values and ≍ (&asympeq;) for equivalence.
HTML references (&#8813;, &#x226D;, or &NotCupCap;) go directly in markup. The CSS escape \226D is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Yes. &NotCupCap; is the named HTML entity for U+226D. Note the mixed-case spelling—that is the correct HTML5 entity name.

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