HTML Entity for Neither A Superset Nor Equal To (⊉)

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

What You'll Learn

How to display the Neither A Superset Nor Equal To symbol (⊉) in HTML using named, hexadecimal, decimal, and CSS escape methods. This character is U+2289 (NEITHER A SUPERSET OF NOR EQUAL TO) in the Mathematical Operators block (U+2200–U+22FF)—used in set theory to state that one set is not a superset of another and is not equal to it.

Render it with the named entity ⊉, ⊉, ⊉, or CSS escape \2289. Compare with the dual relation Neither A Subset Nor Equal To (⊈) and related superset symbols.

⚡ Quick Reference — nsupe

Unicode U+2289

Mathematical Operators

Hex Code ⊉

Hexadecimal reference

HTML Code ⊉

Decimal reference

Named Entity ⊉

Most readable in math markup

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2289
Hex code       ⊉
HTML code      ⊉
Named entity   ⊉
CSS code       \2289
Meaning        Neither a superset of nor equal to
Related        U+2283 = superset (⊃, ⊃)
               U+2287 = superset or equal (⊇, ⊇)
               U+2288 = neither subset nor equal (⊈)
1

Complete HTML Example

This example demonstrates ⊉ using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\2289";
  }
 </style>
</head>
<body>
<p>⊉ using Hexadecimal: &#x2289;</p>
<p>⊉ using HTML Code: &#8841;</p>
<p>⊉ using Named Entity: &nsupe;</p>
<p id="point">⊉ using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

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

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

👀 Live Preview

See ⊉ in set theory and mathematical relation contexts:

Set relation AB means A is neither a superset of nor equal to B.
Large glyph
Superset family ⊃ superset   ⊇ superset or equal   ⊉ neither
Example {1, 2} ⊉ {1, 2, 3}
Entity refs &nsupe; &#x2289; &#8841; \2289

🧠 How It Works

1

Named Entity

&nsupe; is the HTML named entity for U+2289—the most readable choice when writing set-relation markup.

HTML markup
2

Hexadecimal Code

&#x2289; uses the Unicode hexadecimal value 2289. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\2289 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+2289 in Mathematical Operators. Dual relation: ⊈ (neither subset nor equal).

Use Cases

The ⊉ symbol (&nsupe;) is commonly used in:

🔢 Set theory

Expressing that one set is not a superset of and not equal to another.

📚 Academia

Discrete math textbooks, papers, and lecture notes published as HTML.

📐 Math expressions

Formal proofs and definitions involving superset relations.

💻 CS education

Data structures and algorithms courses covering set operations.

🎓 Online courses

Interactive math modules with web-based notation.

🌐 Reference guides

Unicode charts and HTML entity documentation for math symbols.

💡 Best Practices

Do

  • Use &nsupe; for readable set-relation markup
  • Pair ⊉ with plain-language description on first use
  • Distinguish from ⊇ (superset or equal) and ⊈ (neither subset nor equal)
  • Add aria-label for standalone relation symbols
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse ⊉ (&nsupe;) with ⊈ (neither subset nor equal)
  • Use padded Unicode notation like U+02289—the correct value is U+2289
  • Put CSS escape \2289 in HTML text nodes
  • Use \02289 in CSS—the correct escape is \2289
  • Rely on the glyph alone without accessible description

Key Takeaways

1

Three HTML references plus CSS all render ⊉

&#x2289; &#8841; &nsupe;
2

For CSS stylesheets, use the escape in the content property

\2289
3

Unicode U+2289 — NEITHER A SUPERSET OF NOR EQUAL TO

4

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

5

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

❓ Frequently Asked Questions

Use &nsupe; (named), &#x2289; (hex), &#8841; (decimal), or \2289 in CSS content. All produce ⊉.
U+2289 (NEITHER A SUPERSET OF NOR EQUAL TO). Mathematical Operators block (U+2200–U+22FF). Hex 2289, decimal 8841. Named entity: &nsupe;.
In set theory, discrete mathematics, and formal math documents when expressing that one set is neither a superset of nor equal to another.
HTML references (&#8841;, &#x2289;, or &nsupe;) go directly in markup. The CSS escape \2289 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Yes. &nsupe; is the named HTML entity for U+2289 and is the most readable option in source markup.

Explore More HTML Entities!

Discover 1500+ HTML character references — set relations, math operators, logic 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