HTML Entity for Contains As Member (∋)

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

What You'll Learn

How to display Contains As Member (∋) in HTML and CSS. This character is U+220B (CONTAINS AS MEMBER) in the Mathematical Operators block (U+2200–U+22FF). It denotes that a set contains an element—the reverse of “element of” U+2208 (∈): for example, A ∋ x means “set A contains x.”

There is no named HTML entity for U+220B. Use ∋, ∋, or \220B in CSS content. Element-of has ∈ for U+2208; contains-as-member does not. Do not confuse ∋ with the small variant U+220D (∍) or astronomical Conjunction U+260C (☌).

⚡ Quick Reference — Contains As Member

Unicode U+220B

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

Hex Code ∋

Hexadecimal reference

HTML Code ∋

Decimal reference

Named Entity

None (use numeric refs)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+220B
Hex code       ∋
HTML code      ∋
Named entity   —
CSS code       \220B
1

Complete HTML Example

This example shows U+220B using hexadecimal and decimal character references, plus a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\220B";
  }
 </style>
</head>
<body>
<p>Contains As Member using Hexa Decimal: &#x220B;</p>
<p>Contains As Member using HTML Code: &#8715;</p>
<p id="point">Contains As Member using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+220B is supported in modern browsers; use a math-capable font for best glyph quality:

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

👀 Live Preview

See the contains-as-member symbol in mathematical contexts:

Set theory A ∋ x   (set A contains x)
vs element-of ∋ contains   ∈ element of
Standalone
Small variant Regular ∋   Small ∍
Monospace refs &#x220B; &#8715; \220B

🧠 How It Works

1

Hexadecimal Code

&#x220B; references code point U+220B using hex digits 220B.

HTML markup
2

Decimal HTML Code

&#8715; is the decimal equivalent (8715) for the same character.

HTML markup
3

CSS Entity

\220B is the CSS escape for U+220B, used in the content property of ::before or ::after.

CSS stylesheet
=

Same visual result

All three methods produce the contains-as-member glyph: . Unicode U+220B is in Mathematical Operators (U+2200–U+22FF). No named HTML entity exists.

Use Cases

Contains As Member (∋) commonly appears in:

📊 Set theory

Express that a set contains an element (reverse of x ∈ A).

📚 Math education

Discrete mathematics, logic courses, and online textbooks.

🔢 Logic & CS

Formal logic, computer science docs, and set-operation tutorials.

📄 Technical docs

White papers and specifications with inline math notation.

💻 Generated HTML

CMS or tools rendering math symbols without MathML.

🔤 Symbol references

Unicode tables and Mathematical Operators glossaries.

♿ Accessibility

Provide surrounding text like “set A contains x” for screen reader clarity.

💡 Best Practices

Do

  • Use &#x220B; or &#8715; for the standard contains-as-member glyph
  • Use math fonts (Cambria Math, STIX Two Math) for clear operators
  • Use &isin; for element-of (∈) and ∋ for contains-as-member
  • Use \220B only inside CSS content
  • Link to the small variant ∍ page when compact notation is needed

Don’t

  • Confuse U+220B (∋) with U+2208 (∈) or U+260C (☌ conjunction)
  • Use ∋ for logical “and” in prose
  • Assume a named entity exists—U+220B has none
  • Put CSS escape \220B in HTML text nodes
  • Mix hex and decimal styles randomly in one file

Key Takeaways

1

No named entity—use numeric references

&#x220B; &#8715;
2

For CSS stylesheets, use the escape in the content property

\220B
3

U+220B CONTAINS AS MEMBER

4

Reverse of element-of ∈; pair with &isin; when needed

5

Three methods, one glyph — widely supported in modern browsers

❓ Frequently Asked Questions

Use &#x220B; (hex), &#8715; (decimal), or \220B in CSS content. There is no named HTML entity for U+220B.
U+220B (CONTAINS AS MEMBER). Mathematical Operators (U+2200–U+22FF). Hex 220B, decimal 8715.
When you need ∋ in set theory, mathematical notation, logic, or technical documentation—for example A ∋ x means set A contains x. Use numeric references since there is no named entity.
U+2208 (∈) means “x is an element of A” (x ∈ A). U+220B (∋) reverses the operands: A ∋ x means “A contains x.” Element-of has the named entity &isin;; contains-as-member does not.
HTML5 named entities cover commonly used characters. U+220B is a specialized math operator, so use &#x220B; or &#8715;. For the small variant, see Contains As Member Small (∍).

Explore More HTML Entities!

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