HTML Entity for Not a Superset Of (⊅)

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

What You'll Learn

How to display the Not a Superset Of symbol (⊅) in HTML using named, hexadecimal, decimal, and CSS escape methods. This character is U+2285 (NOT A SUPERSET OF) in the Mathematical Operators block (U+2200–U+22FF)—used in set theory to state that one set is not a superset of another (e.g. AB).

Render it with the named entity ⊅, ⊅, ⊅, or CSS escape \2285. Compare with Neither A Superset Nor Equal To (⊉, ⊉) and related superset symbols.

⚡ Quick Reference — Not a Superset Of

Unicode U+2285

Mathematical Operators

Hex Code ⊅

Hexadecimal reference

HTML Code ⊅

Decimal reference

Named Entity ⊅

HTML5 named entity for U+2285

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2285
Hex code       ⊅
HTML code      ⊅
Named entity   ⊅
CSS code       \2285
Meaning        Not a superset of
Related        U+2283 = superset (⊃, ⊃)
               U+2287 = superset or equal (⊇, ⊇)
               U+2289 = neither superset nor equal (⊉, ⊉)
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: "\2285";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x2285;</p>
<p>Symbol (decimal): &#8837;</p>
<p>Symbol (named): &nsup;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

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

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

👀 Live Preview

See ⊅ in set theory and mathematical relation contexts:

Set relation AB means A is not a superset of B.
Large glyph
Superset family ⊃ superset   ⊅ not superset   ⊇ superset or equal
Example {1, 2} ⊅ {3}
Entity refs &nsup; &#x2285; &#8837; \2285

🧠 How It Works

1

Named Entity

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

HTML markup
2

Hexadecimal Code

&#x2285; uses the Unicode hexadecimal value 2285. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

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

Use Cases

The ⊅ symbol (&nsup;) is commonly used in:

🔢 Set theory

Expressing that one set is not a superset of 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 &nsup; for readable set-relation markup
  • Pair ⊅ with plain-language description on first use
  • Distinguish from ⊃ (superset) and ⊉ (neither superset nor equal)
  • Add aria-label for standalone relation symbols
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse ⊅ (&nsup;) with ⊉ (&nsupe;)
  • Confuse &nsup; with &nsub; (not a subset of, U+2284)
  • Use padded Unicode notation like U+02285—the correct value is U+2285
  • Put CSS escape \2285 in HTML text nodes
  • Use \02285 in CSS—the correct escape is \2285

Key Takeaways

1

Three HTML references plus CSS all render ⊅

&#x2285; &#8837; &nsup;
2

For CSS stylesheets, use the escape in the content property

\2285
3

Unicode U+2285 — NOT A SUPERSET OF

4

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

5

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

❓ Frequently Asked Questions

Use &nsup; (named), &#x2285; (hex), &#8837; (decimal), or \2285 in CSS content. All produce ⊅.
U+2285 (NOT A SUPERSET OF). Mathematical Operators block (U+2200–U+22FF). Hex 2285, decimal 8837. Named entity: &nsup;.
In set theory, discrete mathematics, and formal math documents when expressing that one set is not a superset of another—for example, when some element of B is not in A.
HTML references (&#8837;, &#x2285;, or &nsup;) go directly in markup. The CSS escape \2285 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Yes. &nsup; is the named HTML entity for U+2285 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