HTML Entity for Small Element Of (∊)

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
U+220AMathematical Operators (U+2200–U+22FF)
∊Hexadecimal reference
∊Decimal reference
—Use numeric codes only
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)Complete HTML Example
A simple example showing ∊ using hexadecimal code, decimal HTML code, and a CSS content escape (no named entity):
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\220A";
}
</style>
</head>
<body>
<p>Small Element Of using Hex: x ∊ A</p>
<p>Small Element Of using HTML Code: y ∊ B</p>
<p id="point">Small Element Of using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+220A is supported in modern browsers; use a math-capable font for best glyph quality:
👀 Live Preview
See the small element-of operator in set notation:
🧠 How It Works
Hexadecimal Code
∊ references code point U+220A using hex digits 220A.
Decimal HTML Code
∊ is the decimal equivalent (8714) for the same character.
CSS Entity
\220A is the CSS escape for U+220A, used in the content property of pseudo-elements.
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:
Compact membership notation in formal mathematics.
Discrete math, logic, and algebra course materials.
HTML preprints and technical docs with set notation.
Symbol glossaries and math HTML reference tables.
Examples showing numeric references for U+220A.
Tools rendering math symbols without full MathML.
💡 Best Practices
Do
- Use
∊or∊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
\0220Awith a leading zero unless required—prefer\220A - Substitute
∈(U+2208) when ∊ is required - Expect a named HTML entity for U+220A
- Put CSS escape
\220Ain HTML text nodes
Key Takeaways
Three ways to render U+220A in HTML and CSS
∊ ∊For CSS stylesheets, use \220A in the content property
U+220A SMALL ELEMENT OF
No named entity—use numeric references or CSS escape
Previous: Small Contains Vertical Bar (⋼) Next: Small Element Of With Overbar (⋷)
❓ Frequently Asked Questions
∊ (hex), ∊ (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.∊ or ∊ in HTML, or CSS escape \220A in stylesheets. For full-size membership use ∈ (U+2208).∊ or ∊) 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.
8 people found this page helpful
