HTML Entity for Not Normal Subgroup Of Equal To (⋬)

What You'll Learn
How to display the Not Normal Subgroup Of Equal To symbol (⋬) in HTML using named, hexadecimal, decimal, and CSS escape methods. This group-theory operator negates the “normal subgroup or equal” relation (e.g. H ⋬ G means H is neither a normal subgroup of G nor equal to G).
This character is U+22EC (DOES NOT CONTAIN AS NORMAL SUBGROUP OR EQUAL) in the Mathematical Operators block (U+2200–U+22FF). Render it with the named entity ⋬, ⋬, ⋬, or CSS escape \22EC. Compare with Not Normal Subgroup Of (⋪, ⋪).
⚡ Quick Reference — Not Normal Subgroup Of Equal To
U+22ECMathematical Operators
⋬Hexadecimal reference
⋬Decimal reference
⋬HTML5 named entity for U+22EC
Name Value
──────────── ──────────
Unicode U+22EC
Hex code ⋬
HTML code ⋬
Named entity ⋬
CSS code \22EC
Meaning Not normal subgroup of or equal to
Related U+22EA = not normal subgroup of (⋪, ⋪)
U+22B3 = normal subgroup of (⊳, ⊳)
U+22ED = does not contain 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: "\22EC";
}
</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+22EC 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+22EC—the most readable choice when writing group-theory markup.
Hexadecimal Code
⋬ uses the Unicode hexadecimal value 22EC to display the not-normal-subgroup-or-equal symbol.
Decimal HTML Code
⋬ uses the decimal Unicode value 8940 to display the same character.
CSS Entity
\22EC 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+22EC in Mathematical Operators (U+2200–U+22FF).
Use Cases
The ⋬ symbol (⋬) is commonly used in:
Expressing that a subgroup fails the normal-subgroup-or-equal relation.
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 ⋪ (strict not normal subgroup) and ⋭ (
⋭, opposite containment) - Pair ⋬ with plain-language description on first use
- Use numeric references in generated or XML-first workflows
- Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Confuse ⋬ (
⋬) with ⋪ (⋪) - Confuse ⋬ with ⋭ (
⋭, does not contain as normal subgroup or equal) - Use padded Unicode notation like U+022EC—the correct value is
U+22EC - Put CSS escape
\22ECin HTML text nodes - Use
\022ECin CSS—the correct escape is\22EC
Key Takeaways
Three HTML references plus CSS all render ⋬
⋬ ⋬ ⋬For CSS stylesheets, use the escape in the content property
\22ECUnicode U+22EC — DOES NOT CONTAIN AS NORMAL SUBGROUP OR EQUAL
Mathematical Operators block (U+2200–U+22FF)
⋬ is the preferred named entity for readable source markup
❓ Frequently Asked Questions
⋬ (named), ⋬ (hex), ⋬ (decimal), or \22EC in CSS content. All produce ⋬.U+22EC (DOES NOT CONTAIN AS NORMAL SUBGROUP OR EQUAL). Mathematical Operators block (U+2200–U+22FF). Hex 22EC, decimal 8940. Named entity: ⋬.⋪) for the strict “not normal subgroup of” relation without the or-equal component.⋬, ⋬, or ⋬) go directly in markup. The CSS escape \22EC 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+22EC 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
