HTML Entity for Superset With Not Equal To (⊋)

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

What You'll Learn

How to display the Superset With Not Equal To symbol (⊋) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+228B (SUPERSET OF WITH NOT EQUAL TO) in the Mathematical Operators block (U+2200–U+22FF)—used for proper superset relationships in set theory.

Render it with ⊋, ⊋, the named entity ⊋, or CSS escape \228B. For example, AB means A is a proper superset of B (contains all elements of B plus more). Do not confuse ⊋ with ⊇ (superset or equal) or ⊃ (superset of).

⚡ Quick Reference — Superset With Not Equal To

Unicode U+228B

Mathematical Operators

Hex Code ⊋

Hexadecimal reference

HTML Code ⊋

Decimal reference

Named Entity ⊋

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+228B
Hex code       ⊋
HTML code      ⊋
Named entity   ⊋
CSS code       \228B
Block          Mathematical Operators (U+2200–U+22FF)
Related        U+228A = Subset with not equal to (⊊)
1

Complete HTML Example

This example demonstrates the Superset With Not Equal To symbol (⊋) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\228B";
  }
 </style>
</head>
<body>
<p>Using Hexadecimal: &#x228B;</p>
<p>Using HTML Code: &#8843;</p>
<p>Using Named Entity: &supne;</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Superset With Not Equal To entity is universally supported in all modern browsers:

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

👀 Live Preview

See the Superset With Not Equal To symbol (⊋) rendered in different contexts:

Set relation ABA is a proper superset of B
Large glyph
vs related ⊋ proper superset   ⊇ superset or equal   ⊃ superset
Monospace &#x228B; &#8843; &supne; \228B
Named entity &supne; → ⊋

🧠 How It Works

1

Hexadecimal Code

&#x228B; uses the Unicode hexadecimal value 228B to display the symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#8843; uses the decimal Unicode value 8843 to display the same character. This is one of the most commonly used methods.

HTML markup
3

Named Entity

&supne; is the semantic named entity — the easiest to read in source HTML and the most self-descriptive option.

HTML markup
4

CSS Entity

\228B 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 the glyph: . Unicode U+228B in the Mathematical Operators block (U+2200–U+22FF).

Use Cases

The Superset With Not Equal To symbol (⊋) commonly appears in:

📐 Math Expressions

Equations like AB in formulas and proofs.

🗃 Set Theory

Proper superset relations between sets.

📚 Academic Content

Research papers, proofs, and scholarly articles.

📄 Scientific Docs

Technical documentation and math web applications.

🎓 Education

Online courses and tutorials on set theory.

💻 Math Software

Calculator interfaces and computational tool UIs.

📝 Research Papers

Conference proceedings and mathematical journals.

💡 Best Practices

Do

  • Use &supne; for readable source markup
  • Pick one style (hex / decimal / named) per project
  • Add aria-label for standalone symbols in math content
  • Test the glyph across browsers and fonts
  • Pair ⊋ with plain text on first use (e.g. “proper superset”)

Don’t

  • Confuse ⊋ (proper superset) with ⊇ (superset or equal) or ⊃ (superset)
  • Mix entity styles randomly in one file
  • Use CSS escape \228B inside HTML text nodes
  • Use HTML entities in JS (use \u228B instead)
  • Assume all fonts render ⊋ clearly at small sizes

Key Takeaways

1

Three HTML references all render ⊋

&#x228B; &#8843; &supne;
2

For CSS stylesheets, use the escape in the content property

\228B
3

Unicode U+228B — SUPERSET OF WITH NOT EQUAL TO

4

Prefer &supne; for readability—it’s the most self-descriptive named entity

5

Dual symbol: ⊊ (subset with not equal to) in the same Unicode block

❓ Frequently Asked Questions

Use &#x228B; (hex), &#8843; (decimal), &supne; (named), or \228B in CSS content. All produce ⊋.
U+228B (SUPERSET OF WITH NOT EQUAL TO). Mathematical Operators block (U+2200–U+22FF). Hex 228B, decimal 8843.
In mathematical expressions, set theory notation, academic content, scientific documentation, educational materials, research papers, and any content representing proper superset relationships.
HTML entities (&#8843;, &#x228B;, or &supne;) go directly in markup. The CSS escape \228B is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
It represents a proper superset: one set contains all elements of another but is not equal to it—the superset has additional elements not in the subset (e.g. AB).

Explore More HTML Entities!

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