HTML Entity for Double Subset (⋐)

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

What You'll Learn

How to display the Double Subset (⋐) in HTML using hexadecimal, decimal, the named entity ⋐, and CSS escape methods. This character is U+22D0 (DOUBLE SUBSET) in the Mathematical Operators block (U+2200–U+22FF)—used in set theory to denote a double subset relation (e.g. A ⋐ B).

Render it with ⋐, ⋐, ⋐, or CSS escape \22D0. For single subset use ⊂ (⊂, U+2282); for double superset use ⋑ (⋑, U+22D1). See also math entities.

⚡ Quick Reference — Double Subset

Unicode U+22D0

Mathematical Operators block

Hex Code ⋐

Hexadecimal reference

HTML Code ⋐

Decimal reference

Named Entity ⋐

HTML5 named entity for U+22D0

Reference Table
Name           Value
────────────   ──────────
Unicode        U+22D0
Hex code       ⋐
HTML code      ⋐
Named entity   ⋐
CSS code       \22D0
Related        U+2282 = Subset (⊂); U+22D1 = Superset (⋑)
1

Complete HTML Example

This example demonstrates the Double Subset (⋐) using hexadecimal code, decimal HTML code, the named entity ⋐, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\22D0";
  }
 </style>
</head>
<body>
<p>Double Subset using Hexadecimal: &#x22D0;</p>
<p>Double Subset using HTML Code: &#8912;</p>
<p>Double Subset using HTML Entity: &Sub;</p>
<p id="point">Double Subset using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+22D0 is widely supported in modern browsers when rendered with a font that includes Mathematical Operators:

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

👀 Live Preview

See the Double Subset (⋐) in mathematical notation:

Large glyph
vs single subset ⋐ double   ⊂ single
vs double superset ⋐   ⋑
Named entity &Sub; → ⋐
All HTML refs &#x22D0; &#8912; &Sub;
CSS escape \22D0

🧠 How It Works

1

Hexadecimal Code

&#x22D0; uses the Unicode hexadecimal value 22D0 to display the Double Subset. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named HTML Entity

&Sub; is the HTML5 named entity for U+22D0. It is easy to read in source and resolves to the same character (⋐).

HTML markup
4

CSS Entity

\22D0 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+22D0. Single subset: &sub; (⊂). Double superset: &Sup; (⋑, U+22D1).

Use Cases

The Double Subset (⋐) commonly appears in:

📐 Set theory notation

Mathematical expressions where ⋐ denotes a double subset relation between sets (e.g. A ⋐ B in order theory or set containment).

🔬 Order & lattice theory

Notation for relations and partial orders where the double subset symbol has a defined meaning.

📚 Academic publishing

Textbooks, papers, and course materials requiring letterlike math symbols in HTML.

💻 Math on the web

Equation editors and math rendering that need mathematical operator symbols.

📖 Unicode references

Entity lists and guides for Mathematical Operators (U+2200–U+22FF).

♿ Accessibility

Use math-capable fonts so ⋐ renders clearly for all readers.

💡 Best Practices

Do

  • Use &Sub; for readable markup, or &#x22D0; / &#8912;
  • Use math fonts (Cambria Math, STIX Two Math) for reliable rendering
  • Distinguish ⋐ (double) from ⊂ (&sub;, single subset)
  • Distinguish ⋐ from ⋑ (&Sup;, double superset)
  • Use \22D0 only inside CSS content

Don’t

  • Confuse &Sub; (⋐) with &sub; (⊂, single subset)
  • Use &Sup; when you need double superset ⋑, not ⋐
  • Put CSS escape \22D0 in HTML text nodes
  • Forget UTF-8 (<meta charset="utf-8">) on math pages
  • Assume every font includes Mathematical Operators

Key Takeaways

1

Named entity available: &Sub;

&#x22D0; &#8912;
2

For CSS stylesheets, use the escape in the content property

\22D0
3

Unicode U+22D0 DOUBLE SUBSET

4

Single ⊂: U+2282 via &sub; or &#x2282;

5

Four methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x22D0; (hex), &#8912; (decimal), &Sub; (named entity), or \22D0 in CSS content. All produce ⋐.
U+22D0 (DOUBLE SUBSET). Mathematical Operators block (U+2200–U+22FF). Hex 22D0, decimal 8912. Double subset relation in set theory.
When you need the double subset symbol in mathematical or set-theoretic content: set theory notation, order theory, expressions, academic papers, or any context where ⋐ is required.
HTML references (&#8912;, &#x22D0;, or &Sub;) go in markup. The CSS escape \22D0 is used in stylesheets, typically in the content property of pseudo-elements.
&Sub; is easier to read in source than &#8912; or &#x22D0;, but all produce ⋐. The named entity is part of the HTML5 entity set for mathematical operators.

Explore More HTML Entities!

Discover 1500+ HTML character references — math symbols, letterlike glyphs, 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