HTML Entity for Element Of Underbar (⋸)

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

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

Unicode U+22F8

Mathematical Operators

Hex Code ⋸

Hexadecimal reference

HTML Code ⋸

Decimal reference

Named Entity

Use numeric codes only

Reference Table
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 (⋵)
1

Complete HTML Example

This example demonstrates the Element Of Underbar (⋸) using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\22F8";
  }
 </style>
</head>
<body>
<p>Element Of Underbar using Hexadecimal: &#x22F8;</p>
<p>Element Of Underbar using HTML Code: &#8952;</p>
<p id="point">Element Of Underbar using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+22F8 is 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 Element Of Underbar (⋸) alongside standard element-of notation:

Large glyph
vs standard xS  ·  xS
Formal notation Specialized membership: ⋸
Numeric refs &#x22F8; &#8952;

🧠 How It Works

1

Hexadecimal Code

&#x22F8; uses the Unicode hexadecimal value 22F8 to display the Element Of Underbar. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\22F8 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

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:

📐 Math notation

Formal expressions and set-theory notation requiring this variant.

🎓 Education

Advanced set theory, discrete math, and logic course materials.

📝 Formal logic

Specialized membership or relation notation in proofs.

💻 CS docs

Type-theoretic and mathematical notation in technical writing.

📰 Research

Papers and preprints with correct operator variants in HTML.

🌐 Symbol guides

Math wikis, Unicode references, and notation glossaries.

💡 Best Practices

Do

  • Use &#x22F8; or &#8952; 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 &isin; (∈) 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 \22F8 in HTML text nodes
  • Assume plain sans-serif fonts always render math variants clearly
  • Skip MathML for complex multi-line formulas

Key Takeaways

1

Two HTML numeric references render ⋸

&#x22F8; &#8952;
2

For CSS stylesheets, use the escape in the content property

\22F8
3

Unicode U+22F8 — ELEMENT OF WITH UNDERBAR

4

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

5

Three methods, one glyph — no named HTML entity

❓ Frequently Asked Questions

Use &#x22F8; (hex), &#8952; (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.
In mathematical and educational content, set theory and formal logic notation, technical documentation, and any HTML requiring this variant of the element-of symbol.
HTML references (&#8952; or &#x22F8;) 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.
Named entities cover common symbols like standard element-of (&isin; for U+2208). Specialized variants such as U+22F8 have no named entity—use &#x22F8; or &#8952; in HTML.

Explore More HTML Entities!

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