HTML Entity for Element Of With Long Horizontal Stroke (⋲)

What You'll Learn
How to display the Element Of With Long Horizontal Stroke (⋲) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+22F2 (ELEMENT OF WITH LONG HORIZONTAL STROKE) in the Mathematical Operators block (U+2200–U+22FF)—a variant of set membership related to standard element-of (∈, U+2208).
Render it with ⋲, ⋲, the named entity ⋲, or CSS escape \22F2. For standard membership use ∈ (∈). Compare ⋵ (dot above, U+22F5, ⋵) or ⋶ (overbar, U+22F6, ⋶).
⚡ Quick Reference — Element Of With Long Horizontal Stroke
U+22F2Mathematical Operators
⋲Hexadecimal reference
⋲Decimal reference
⋲Most readable in math markup
Name Value
──────────── ──────────
Unicode U+22F2
Hex code ⋲
HTML code ⋲
Named entity ⋲
CSS code \22F2
Related U+2208 = Element of (∈ ∈); U+22F5 = Dot above (⋵)Complete HTML Example
This example demonstrates the Element Of With Long Horizontal Stroke (⋲) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\22F2";
}
</style>
</head>
<body>
<p>Element Of With Long Horizontal Stroke using Hexadecimal: ⋲</p>
<p>Element Of With Long Horizontal Stroke using HTML Code: ⋲</p>
<p>Element Of With Long Horizontal Stroke using HTML Entity: ⋲</p>
<p id="point">Element Of With Long Horizontal Stroke using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Element Of With Long Horizontal Stroke entity is universally supported in modern browsers:
👀 Live Preview
See the Element Of With Long Horizontal Stroke (⋲) alongside related element-of symbols:
🧠 How It Works
Hexadecimal Code
⋲ uses the Unicode hexadecimal value 22F2 to display the Element Of With Long Horizontal Stroke. The x prefix indicates hexadecimal format.
Decimal HTML Code
⋲ uses the decimal Unicode value 8946 to display the same character.
Named Entity
⋲ is the semantic named entity for Element Of With Long Horizontal Stroke—the easiest to read in source HTML for set theory and mathematics.
CSS Entity
\22F2 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: ⋲. Unicode U+22F2 sits in the Mathematical Operators block (U+2200–U+22FF).
Use Cases
The Element Of With Long Horizontal Stroke (⋲) commonly appears in:
Specialized membership or relation notation in proofs and expressions.
Math textbooks, discrete math, and formal logic course materials.
Formal logic, proof writing, and logical expression documentation.
Type systems, formal semantics, and set-theoretic technical writing.
Online math and CS publications with correct operator variants.
Solvers, calculators, and formal logic UIs that output HTML.
💡 Best Practices
Do
- Use
⋲for readable set-theory markup - Pick one style (hex / decimal / named) per project
- Use math-friendly fonts (Cambria Math, Latin Modern Math)
- Add
aria-label(e.g. “element of with long horizontal stroke”) when meaning matters - Use
∈(∈) when standard membership is sufficient
Don’t
- Substitute ⋲ for ∈ unless your notation specifically requires it
- Use CSS escape
\22F2inside HTML text nodes - Mix entity styles randomly in one file
- Assume plain sans-serif fonts always render math variants clearly
- Skip MathML for complex multi-line formulas
Key Takeaways
Three HTML references plus CSS all render ⋲
⋲ ⋲ ⋲For CSS stylesheets, use the escape in the content property
\22F2Unicode U+22F2 — ELEMENT OF WITH LONG HORIZONTAL STROKE
Prefer ⋲ for readability in math markup
Mathematical Operators block (U+2200–U+22FF)
❓ Frequently Asked Questions
⋲ (hex), ⋲ (decimal), ⋲ (named), or \22F2 in CSS content. All produce ⋲.U+22F2 (ELEMENT OF WITH LONG HORIZONTAL STROKE). Mathematical Operators block (U+2200–U+22FF). Hex 22F2, decimal 8946. Used in specialized set-theory and logical notation.⋲, ⋲, or ⋲) go directly in markup. The CSS escape \22F2 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.⋲, ⋲, and ⋲ are equivalent in modern browsers and all render ⋲.Explore More HTML Entities!
Discover 1500+ HTML character references — math operators, set theory symbols, and more.
8 people found this page helpful
