HTML Entity for Not Normal Subgroup Of (⋪)

What You'll Learn
How to display the Not Normal Subgroup Of symbol (⋪) in HTML using named, hexadecimal, decimal, and CSS escape methods. This group-theory operator states that one group is not a normal subgroup of another (e.g. H ⋪ G means H is not a normal subgroup of G).
This character is U+22EA (DOES NOT CONTAIN AS NORMAL SUBGROUP) in the Mathematical Operators block (U+2200–U+22FF). Render it with the named entity ⋪, ⋪, ⋪, or CSS escape \22EA. Compare with Normal Subgroup Of (⊳, ⊳) and Normal Subgroup (⊲, ⊲).
⚡ Quick Reference — Not Normal Subgroup Of
U+22EAMathematical Operators
⋪Hexadecimal reference
⋪Decimal reference
⋪HTML5 named entity for U+22EA
Name Value
──────────── ──────────
Unicode U+22EA
Hex code ⋪
HTML code ⋪
Named entity ⋪
CSS code \22EA
Meaning Does not contain as normal subgroup
Related U+22B2 = normal subgroup (⊲, ⊲)
U+22B3 = normal subgroup of (⊳, ⊳)
U+22EC = not normal subgroup or equal (⋬, ⋬)
Block Mathematical Operators (U+2200–U+22FF)Complete HTML Example
A simple example showing ⋪ using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\22EA";
}
</style>
</head>
<body>
<p>Symbol (hex): ⋪</p>
<p>Symbol (decimal): ⋪</p>
<p>Symbol (named): ⋪</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
U+22EA is widely supported wherever Unicode Mathematical Operators render correctly:
👀 Live Preview
See ⋪ in group theory and abstract algebra contexts:
🧠 How It Works
Named Entity
⋪ is the HTML named entity for U+22EA—the most readable choice when writing group-theory markup.
Hexadecimal Code
⋪ uses the Unicode hexadecimal value 22EA to display the not-normal-subgroup symbol.
Decimal HTML Code
⋪ uses the decimal Unicode value 8938 to display the same character.
CSS Entity
\22EA is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce: ⋪. Unicode U+22EA in Mathematical Operators (U+2200–U+22FF).
Use Cases
The ⋪ symbol (⋪) is commonly used in:
Expressing that a subgroup is not normal in a given group.
Textbooks, papers, and lecture notes on groups and subgroups.
Formal proofs and definitions involving normal subgroups.
Cryptography and algebra courses covering group structures.
Interactive math modules with web-based notation.
Unicode charts and HTML entity documentation for math symbols.
💡 Best Practices
Do
- Use
⋪for readable group-theory markup - Distinguish ⋪ from ⊳ (normal subgroup of) and ⋬ (not normal subgroup or equal)
- Pair ⋪ with plain-language description on first use
- Add
aria-labelfor standalone relation symbols - Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Confuse ⋪ (
⋪) with ⊳ (⊳) - Confuse ⋪ with ⋬ (
⋬, not normal subgroup or equal) - Use padded Unicode notation like U+022EA—the correct value is
U+22EA - Put CSS escape
\22EAin HTML text nodes - Use
\022EAin CSS—the correct escape is\22EA
Key Takeaways
Three HTML references plus CSS all render ⋪
⋪ ⋪ ⋪For CSS stylesheets, use the escape in the content property
\22EAUnicode U+22EA — DOES NOT CONTAIN AS NORMAL SUBGROUP
Mathematical Operators block (U+2200–U+22FF)
⋪ is the preferred named entity for readable source markup
❓ Frequently Asked Questions
⋪ (named), ⋪ (hex), ⋪ (decimal), or \22EA in CSS content. All produce ⋪.U+22EA (DOES NOT CONTAIN AS NORMAL SUBGROUP). Mathematical Operators block (U+2200–U+22FF). Hex 22EA, decimal 8938. Named entity: ⋪.⋪, ⋪, or ⋪) go directly in markup. The CSS escape \22EA is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.⋪ is the named HTML entity for U+22EA and is the most readable option in source markup.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, and more.
8 people found this page helpful
