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

Beginner
6 min read
Updated: Sep 2026
1 example
Unicode U+2289

What Is the Neither A Superset Nor Equal To Entity?

Neither a superset nor equal to (⊉) is the Mathematical Operators character at Unicode U+2289 (NEITHER A SUPERSET OF NOR EQUAL TO). In set theory it means A is not a superset of B and not equal to B — the negation of ⊇ (⊇). HTML5 provides the named entities ⊉ and ⊉.

Remember
Character     ⊉
Unicode       U+2289
Named entity  ⊉  (also ⊉)
Hex entity    ⊉
Decimal       ⊉
CSS escape    \2289

All of these produce the same glyph: ⊉. Prefer ⊉ for readable HTML; paste ⊉ in UTF-8 when convenient.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entity⊉HTML markup (also ⊉)
Hex entity⊉HTML markup
Decimal entity⊉HTML markup
Direct character⊉HTML text (UTF-8 default)
CSS escape\2289Stylesheet content

When to Use Which

SituationUse
Readable math / set theory in HTML⊉ or ⊉
UTF-8 math textType or paste ⊉
Numeric entity required⊉ or ⊉
Generated text via ::before / ::aftercontent: "\2289"
Positive relation (superset or equal)⊇ / ⊇ (⊇)

Live Preview

Neither a superset nor equal to rendered in common contexts.

Glyph ⊉
Large glyph ⊉
In a relation {1, 2} ⊉ {1, 2, 3}
With entities Named: ⊉ | Hex: ⊉ | Decimal: ⊉
Related symbols ⊇ (⊇) · ⊃ (⊃) · ⊈ (⊈)

Complete HTML Example

One page that shows neither a superset nor equal to with named, hex, decimal, direct, and CSS forms. Use View Output or open the live editor.

Named + Hex + Decimal + Direct + CSS

Five ways to produce ⊉ in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Neither A Superset Nor Equal To (⊉) in HTML</title>
  <style>
    #point::after {
      content: "\2289";
    }
  </style>
</head>
<body>
  <p>Using Named Entity: &nsupe;</p>
  <p>Using Hex Code: &#x2289;</p>
  <p>Using HTML Code: &#8841;</p>
  <p>Using Direct Character: ⊉</p>
  <p id="point">Using CSS Entity: </p>
  <p>Example: {1, 2} &nsupe; {1, 2, 3}</p>
</body>
</html>
Try It Yourself

How It Works

1. Named: &nsupe; (or &nsupseteq;) is the clearest HTML form for U+2289.

2. Hex: U+2289 → &#x2289; in HTML. Reliable numeric form.

3. Decimal: same code point as 8841 → &#8841;. Same glyph.

4. Direct: paste ⊉ in a UTF-8 file with <meta charset="UTF-8">.

5. CSS: use \2289 in content (not an HTML entity). #point::after appends that ⊉ after the paragraph text.

Pitfalls & Tips

Common mistakes when working with this set-theory entity.

Meaning

Negates ⊇, not ⊃

⊉ is “notsupseteq”. For “not a superset of” alone, use &nsup; (⊅).

Aliases

&nsupe; = &nsupseteq;

Both named forms map to U+2289. Pick one and stay consistent.

CSS vs HTML

Do not mix escapes

\2289 belongs in CSS. &nsupe; / &#x2289; / &#8841; belong in HTML.

Look-alikes

Not ⊇, ⊈, or ⊅

⊇ is supseteq; ⊈ is notsubseteq; ⊅ is notsuperset. Different symbols.

Semicolon

End references

Always finish with ; — write &nsupe;, not &nsupe.

UTF-8

Declare charset

If you paste ⊉ directly, serve the page as UTF-8 with <meta charset="UTF-8">.

Browser Support

Neither a superset nor equal to (U+2289) and its entity forms (&nsupe;, &#x2289;, &#8841;, CSS \\2289) are supported in all mainstream browsers. Glyph availability depends on the font.

✓ Universal support

Neither A Superset Nor Equal To (&#x2289;)

Prefer &nsupe;, or encode with hex, decimal, or CSS escape — same glyph everywhere.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+2289 / entities Full support

Bottom line: Prefer &nsupe; (or &nsupseteq;) in HTML. Use &#x2289; / &#8841; when a numeric form is required, and \\2289 only inside CSS content.

Key Takeaways

  • Unicode: neither supseteq is U+2289 (decimal 8841), Mathematical Operators.
  • HTML: prefer &nsupe; (alias &nsupseteq;), or &#x2289; / &#8841;.
  • CSS: use \2289 inside content for generated text.
  • Meaning: set theory “notsupseteq” — not the same as ⊇, ⊈, or ⊅.

One line: U+2289 → &nsupe; / &#x2289; / &#8841; / CSS \2289.

Frequently Asked Questions

Use &nsupe; or &nsupseteq; (named), &#x2289; (hex), &#8841; (decimal), type ⊉ in UTF-8, or the CSS escape \2289 in content. All render ⊉.
U+2289 (NEITHER A SUPERSET OF NOR EQUAL TO). Hex 2289, decimal 8841. It belongs to Mathematical Operators and means “notsupseteq” in set theory.
Yes. HTML5 defines &nsupe; and &nsupseteq; (aliases for the same character). You can also use &#8841; or &#x2289;.
Use it in set theory or math when A is not a superset of B and not equal to B (A ⊉ B). Prefer &nsupe; for readable source. For ordinary English text, write the relation in words.
HTML entities (&nsupe;, &#8841;, or &#x2289;) go in markup. The CSS escape \2289 is used in stylesheets (usually in the content property of ::before/::after). Both render ⊉.
⊇ (U+2287, &supe;) means superset or equal. ⊃ (U+2283, &sup;) means superset of. ⊈ (U+2288, &nsube;) is neither a subset nor equal to. ⊉ specifically negates ⊇. Do not substitute one for another.

Did you know?

Neither a superset nor equal to (⊉) is Unicode U+2289 (decimal 8841) — NEITHER A SUPERSET OF NOR EQUAL TO in Mathematical Operators. HTML5 provides &nsupe; and &nsupseteq; (same glyph). It negates &supe; / &supseteq; (⊇). Pair with &nsube; (⊈) for the subset side.

Next: Neptune

Learn the HTML entity for the Neptune symbol — the next character in this entity sequence.

Neptune tutorial →

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