HTML Entity for Element Of Underbar (⋸)

What You'll Learn
How to display the Element Of Underbar (⋸) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+22F8 (ELEMENT OF WITH UNDERBAR) in the Mathematical Operators block (U+2200–U+22FF)—a specialized variant related to standard set membership (∈, U+2208).
Render it with ⋸, ⋸, or CSS escape \22F8. There is no named HTML entity for this symbol. For the common element-of operator use ∈ (∈). Compare ⋵ (element of with dot above, U+22F5, ⋵) for another related variant.
⚡ Quick Reference — Element Of Underbar
U+22F8Mathematical Operators
⋸Hexadecimal reference
⋸Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+22F8
Hex code ⋸
HTML code ⋸
Named entity (none)
CSS code \22F8
Related U+2208 = Element of (∈ ∈); U+22F5 = With dot above (⋵)Complete HTML Example
This example demonstrates the Element Of Underbar (⋸) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\22F8";
}
</style>
</head>
<body>
<p>Element Of Underbar using Hexadecimal: ⋸</p>
<p>Element Of Underbar using HTML Code: ⋸</p>
<p id="point">Element Of Underbar using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+22F8 is supported in modern browsers when rendered with a font that includes Mathematical Operators:
👀 Live Preview
See the Element Of Underbar (⋸) alongside standard element-of notation:
🧠 How It Works
Hexadecimal Code
⋸ uses the Unicode hexadecimal value 22F8 to display the Element Of Underbar. The x prefix indicates hexadecimal format.
Decimal HTML Code
⋸ uses the decimal Unicode value 8952 to display the same character.
CSS Entity
\22F8 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce: ⋸. Unicode U+22F8 in the Mathematical Operators block (U+2200–U+22FF). No named HTML entity—use numeric codes in markup. Serve HTML as UTF-8.
Use Cases
The Element Of Underbar (⋸) is commonly used in:
Formal expressions and set-theory notation requiring this variant.
Advanced set theory, discrete math, and logic course materials.
Specialized membership or relation notation in proofs.
Type-theoretic and mathematical notation in technical writing.
Papers and preprints with correct operator variants in HTML.
Math wikis, Unicode references, and notation glossaries.
💡 Best Practices
Do
- Use
⋸or⋸consistently in markup - Use math-friendly fonts (Cambria Math, Latin Modern Math) for clear rendering
- Add
aria-label(e.g. “element of with underbar”) when meaning matters - Use
∈(∈) for standard set membership when that is sufficient - Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Expect a named entity—none exists for U+22F8
- Substitute ⋸ for ∈ unless your notation specifically requires it
- Put CSS escape
\22F8in HTML text nodes - Assume plain sans-serif fonts always render math variants clearly
- Skip MathML for complex multi-line formulas
Key Takeaways
Two HTML numeric references render ⋸
⋸ ⋸For CSS stylesheets, use the escape in the content property
\22F8Unicode U+22F8 — ELEMENT OF WITH UNDERBAR
Mathematical Operators block (U+2200–U+22FF)
Three methods, one glyph — no named HTML entity
❓ Frequently Asked Questions
⋸ (hex), ⋸ (decimal), or \22F8 in CSS content. There is no named entity. All produce ⋸.U+22F8 (ELEMENT OF WITH UNDERBAR). Mathematical Operators block (U+2200–U+22FF). Hex 22F8, decimal 8952. Used in specialized set-theory and formal logic notation.⋸ or ⋸) go in markup. The CSS escape \22F8 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.∈ for U+2208). Specialized variants such as U+22F8 have no named entity—use ⋸ or ⋸ in HTML.Explore More HTML Entities!
Discover 1500+ HTML character references — math operators, set theory symbols, and more.
8 people found this page helpful
