HTML Entity for Element Of With Vertical Bar At End Horizontal Stroke Small (⋴)

What You'll Learn
How to display the Element Of With Vertical Bar At End Horizontal Stroke Small (⋴) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+22F4 (ELEMENT OF WITH VERTICAL BAR AT END OF HORIZONTAL STROKE SMALL) in the Mathematical Operators block (U+2200–U+22FF)—the small variant of ⋳ (U+22F3, ⋳).
Render it with ⋴, ⋴, the named entity ⋴, or CSS escape \22F4. Do not confuse ⋴ (U+22F4, this symbol) with ∈ (U+2208, standard element of). Compare ⋳ (regular size, U+22F3) when you need the non-small form.
⚡ Quick Reference — Element Of With Vertical Bar At End Horizontal Stroke Small
U+22F4Mathematical Operators (small)
⋴Hexadecimal reference
⋴Decimal reference
⋴Small variant (not ∈)
Name Value
──────────── ──────────
Unicode U+22F4
Hex code ⋴
HTML code ⋴
Named entity ⋴
CSS code \22F4
Related U+22F3 = Regular size (⋳); U+2208 = Element of (∈ ∈)Complete HTML Example
This example demonstrates the Element Of With Vertical Bar At End Horizontal Stroke Small (⋴) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\22F4";
}
</style>
</head>
<body>
<p>Element Of With Vertical Bar At End Horizontal Stroke Small using Hexadecimal: ⋴</p>
<p>Element Of With Vertical Bar At End Horizontal Stroke Small using HTML Code: ⋴</p>
<p>Element Of With Vertical Bar At End Horizontal Stroke Small using HTML Entity: ⋴</p>
<p id="point">Element Of With Vertical Bar At End Horizontal Stroke Small using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Element Of With Vertical Bar At End Horizontal Stroke Small entity is universally supported in modern browsers:
👀 Live Preview
See the small variant (⋴) compared with the regular (⋳) and standard element-of (∈) symbols:
⋴ ⋴ vs ∈ ∈🧠 How It Works
Hexadecimal Code
⋴ uses the Unicode hexadecimal value 22F4 to display this small variant symbol. The x prefix indicates hexadecimal format.
Decimal HTML Code
⋴ uses the decimal Unicode value 8948 to display the same character.
Named Entity
⋴ is the semantic named entity for this small variant—not ∈ (U+2208). Easiest to read in set-theory markup.
CSS Entity
\22F4 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 small variant glyph: ⋴. Unicode U+22F4 in the Mathematical Operators block (U+2200–U+22FF).
Use Cases
The Element Of With Vertical Bar At End Horizontal Stroke Small (⋴) commonly appears in:
Fine-grained membership notation where the small variant is required.
Textbooks and courses distinguishing regular vs small operator forms.
Formal logic and proof writing with compact notation.
Type systems and formal semantics using operator size variants.
Papers needing both ⋳ and ⋴ rendered correctly in HTML.
Unicode and entity reference pages for math operators.
💡 Best Practices
Do
- Use
⋴for this small variant (U+22F4) - Use
∈only for standard element of (U+2208) - Pair with ⋳ documentation when both sizes appear on one page
- Use math-friendly fonts for clear small-glyph rendering
- Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Confuse
⋴(⋴) with∈(∈) - Use ⋴ when ⋳ or ∈ is the correct operator
- Put CSS escape
\22F4in HTML text nodes - Assume all fonts distinguish ⋳ and ⋴ clearly at small sizes
- 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
\22F4Unicode U+22F4 — small vertical-bar element-of variant
⋴ is not the same as ∈ (U+2208)
Regular size is ⋳ (⋳, U+22F3)
❓ Frequently Asked Questions
⋴ (hex), ⋴ (decimal), ⋴ (named), or \22F4 in CSS content. All produce ⋴.U+22F4 (ELEMENT OF WITH VERTICAL BAR AT END OF HORIZONTAL STROKE SMALL). Mathematical Operators block (U+2200–U+22FF). Hex 22F4, decimal 8948.⋴ renders ⋴ (U+22F4, small vertical-bar variant). ∈ renders ∈ (U+2208, standard element of). They are different characters with different named entities.⋴, ⋴, or ⋴) go directly in markup. The CSS escape \22F4 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, set theory symbols, and more.
8 people found this page helpful
