HTML Entity for Element With Two Horizontal Stroke (⋹)

What You'll Learn
How to display the Element With Two Horizontal Stroke (⋹) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+22F9 (ELEMENT OF WITH TWO HORIZONTAL STROKES) in the Mathematical Operators block (U+2200–U+22FF)—a variant of the element-of symbol with two horizontal strokes.
Render it with ⋹, ⋹, the named entity ⋹, or CSS escape \22F9. Do not confuse ⋹ (U+22F9, this symbol) with ∈ (U+2208, standard element of ∈).
⚡ Quick Reference — Element With Two Horizontal Stroke
U+22F9Mathematical Operators
⋹Hexadecimal reference
⋹Decimal reference
⋹Two-stroke variant (not ∈)
Name Value
──────────── ──────────
Unicode U+22F9
Hex code ⋹
HTML code ⋹
Named entity ⋹
CSS code \22F9
Related U+2208 = Element of (∈ ∈); U+22F4 = Vertical bar small (⋴)Complete HTML Example
This example demonstrates the Element With Two Horizontal Stroke (⋹) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\22F9";
}
</style>
</head>
<body>
<p>Element With Two Horizontal Stroke using Hexadecimal: ⋹</p>
<p>Element With Two Horizontal Stroke using HTML Code: ⋹</p>
<p>Element With Two Horizontal Stroke using HTML Entity: ⋹</p>
<p id="point">Element With Two Horizontal Stroke using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Element With Two Horizontal Stroke entity is universally supported in modern browsers:
👀 Live Preview
See the two-stroke element-of (⋹) compared with standard element-of (∈) and the previous variant in the sequence (⋴):
⋹ ⋹ vs ∈ ∈🧠 How It Works
Hexadecimal Code
⋹ uses the Unicode hexadecimal value 22F9 to display this symbol. The x prefix indicates hexadecimal format.
Decimal HTML Code
⋹ uses the decimal Unicode value 8953 to display the same character.
Named Entity
⋹ is the semantic named entity for U+22F9—not ∈ (U+2208). Easiest to read in set-theory markup.
CSS Entity
\22F9 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+22F9 in the Mathematical Operators block (U+2200–U+22FF).
Use Cases
The Element With Two Horizontal Stroke (⋹) commonly appears in:
Specialized set membership or relation notation in proofs.
Math textbooks, discrete math, and formal logic courses.
Formal logic and proof writing with operator variants.
Type systems and formal semantics in technical writing.
Papers publishing correct element-of variant symbols online.
Unicode and entity reference pages for math operators.
💡 Best Practices
Do
- Use
⋹for this two-stroke variant (U+22F9) - Use
∈only for standard element of (U+2208) - Add
aria-labelwhen the symbol carries semantic meaning - Use math-friendly fonts for clear glyph rendering
- Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Confuse
⋹(⋹) with∈(∈) - Use ⋹ when ∈ or another element-of variant is correct
- Put CSS escape
\22F9in HTML text nodes - Assume every font renders two horizontal strokes distinctly
- Mix entity styles randomly in one file
Key Takeaways
Three HTML references plus CSS all render ⋹
⋹ ⋹ ⋹For CSS stylesheets, use the escape in the content property
\22F9Unicode U+22F9 — element of with two horizontal strokes
⋹ is not the same as ∈ (U+2208)
Previous in sequence: ⋴ (vertical bar small, U+22F4)
❓ Frequently Asked Questions
⋹ (hex), ⋹ (decimal), ⋹ (named), or \22F9 in CSS content. All produce ⋹.U+22F9 (ELEMENT OF WITH TWO HORIZONTAL STROKES). Mathematical Operators block (U+2200–U+22FF). Hex 22F9, decimal 8953.⋹ renders ⋹ (U+22F9, two horizontal strokes). ∈ renders ∈ (U+2208, standard element of). They are different characters with different named entities.⋹, ⋹, or ⋹) go directly in markup. The CSS escape \22F9 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.Explore More HTML Entities!
Discover 1500+ HTML character references — math operators, punctuation, and more.
8 people found this page helpful
