HTML Entity for Small Element Of (∊)

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

What You'll Learn

How to display Small Element Of (∊) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+220A (SMALL ELEMENT OF) in the Mathematical Operators block (U+2200–U+22FF). It denotes set membership in compact mathematical notation.

Render it with ∊, ∊, or CSS \220A. There is no named HTML entity. Do not confuse ∊ with Element Of U+2208 (∈, ∈), Contains As Member Small U+220D (∍), or Small Element Of With Overbar U+22F7 (⋷).

⚡ Quick Reference — Small Element Of

Unicode U+220A

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

Hex Code ∊

Hexadecimal reference

HTML Code ∊

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+220A
Hex code       ∊
HTML code      ∊
Named entity   (none)
CSS code       \220A
Related        U+2208 = ∈ (element of, ∈)
               U+220D = ∍ (small contains member)
Block          Mathematical Operators (U+2200–U+22FF)
1

Complete HTML Example

A simple example showing ∊ using hexadecimal code, decimal HTML code, and a CSS content escape (no named entity):

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\220A";
  }
 </style>
</head>
<body>
<p>Small Element Of using Hex: x &#x220A; A</p>
<p>Small Element Of using HTML Code: y &#8714; B</p>
<p id="point">Small Element Of using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

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

Chrome1+
Firefox1+
Safari3.1+
Edge12+
Opera4+
Android4.4+
iOS Safari3.2+

👀 Live Preview

See the small element-of operator in set notation:

Set membership x ∊ A
Standalone
vs ∈ ∊ (small)   ∈ (element of, &isin;)
vs ∍ ∊ (element of)   ∍ (small contains member)
Numeric refs &#x220A; &#8714; \220A

🧠 How It Works

1

Hexadecimal Code

&#x220A; references code point U+220A using hex digits 220A.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\220A is the CSS escape for U+220A, used in the content property of pseudo-elements.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+220A in Mathematical Operators. No named entity. Next: Small Element Of With Overbar.

Use Cases

Small Element Of (∊) commonly appears in:

📊 Set theory

Compact membership notation in formal mathematics.

📚 Math education

Discrete math, logic, and algebra course materials.

📄 Academic papers

HTML preprints and technical docs with set notation.

💻 Documentation

Symbol glossaries and math HTML reference tables.

🔤 Entity demos

Examples showing numeric references for U+220A.

📐 Generated HTML

Tools rendering math symbols without full MathML.

💡 Best Practices

Do

  • Use &#x220A; or &#8714; in HTML markup
  • Use math fonts (Cambria Math, STIX Two Math) for clear operators
  • Keep hex or decimal style consistent across a document
  • Use CSS content: "\220A" only in stylesheets
  • Distinguish ∊ from ∈ (element of) and ∍ (small contains)

Don’t

  • Write U+0220A—the correct notation is U+220A
  • Use CSS \0220A with a leading zero unless required—prefer \220A
  • Substitute &isin; (U+2208) when ∊ is required
  • Expect a named HTML entity for U+220A
  • Put CSS escape \220A in HTML text nodes

Key Takeaways

1

Three ways to render U+220A in HTML and CSS

&#x220A; &#8714;
2

For CSS stylesheets, use \220A in the content property

3

U+220A SMALL ELEMENT OF

4

No named entity—use numeric references or CSS escape

❓ Frequently Asked Questions

Use &#x220A; (hex), &#8714; (decimal), or \220A in CSS content. There is no named HTML entity. All three render ∊.
U+220A (SMALL ELEMENT OF). Mathematical Operators (U+2200–U+22FF). Hex 220A, decimal 8714.
No. Use numeric references &#x220A; or &#8714; in HTML, or CSS escape \220A in stylesheets. For full-size membership use &isin; (U+2208).
When you need compact set membership notation in mathematical documentation, academic content, or technical references for the small element-of operator.
HTML code (&#8714; or &#x220A;) is used directly in HTML content. CSS entity \220A is used in stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

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