HTML Entity for Normal Subgroup Of (⊳)

What You'll Learn
How to display the normal subgroup of symbol (⊳) in HTML using named, hexadecimal, decimal, and CSS escape methods. This glyph is the paired operator to ⊲ and is used in group theory and abstract algebra to express normal-subgroup-of relationships.
This character is U+22B3 (NORMAL SUBGROUP OF) in the Mathematical Operators block (U+2200–U+22FF). Render it with ⊳, ⊳, ⊳, or CSS escape \22B3.
⚡ Quick Reference — Normal Subgroup Of Entity
U+22B3Mathematical Operators
⊳Hexadecimal reference
⊳Decimal reference
⊳Most readable option
Name Value
──────────── ──────────
Unicode U+22B3
Hex code ⊳
HTML code ⊳
Named entity ⊳
CSS code \22B3
Meaning Normal subgroup of
Related U+22B2 = Normal subgroup (⊲, ⊲)Complete HTML Example
This example demonstrates the normal subgroup of symbol (⊳) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\22B3";
}
</style>
</head>
<body>
<p>Normal Subgroup Of using Hexadecimal: ⊳</p>
<p>Normal Subgroup Of using HTML Code: ⊳</p>
<p>Normal Subgroup Of using Named Entity: ⊳</p>
<p id="point">Normal Subgroup Of using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The normal subgroup of symbol (⊳) is widely supported wherever Unicode Mathematical Operators render correctly:
👀 Live Preview
See the normal subgroup of symbol (⊳) in group-theory contexts:
🧠 How It Works
Named Entity
⊳ is the HTML named entity for U+22B3—the most readable choice when writing group-theory markup.
Hexadecimal Code
⊳ uses the Unicode hexadecimal value 22B3. The x prefix indicates hexadecimal format.
Decimal HTML Code
⊳ uses the decimal Unicode value 8883 to display the same character.
CSS Entity
\22B3 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+22B3 in Mathematical Operators (U+2200–U+22FF).
Use Cases
The normal subgroup of symbol (⊳) is commonly used in:
Express that H is a normal subgroup of G using ⊳ notation.
Textbooks, lecture notes, and course materials on abstract algebra.
Formal definitions, theorems, and proofs involving quotient groups.
Online references and encyclopedia articles on subgroup structure.
Unicode charts and HTML entity documentation for math symbols.
Specifications and documentation for mathematical software libraries.
💡 Best Practices
Do
- Use
⊳for readable group-theory markup - Distinguish ⊳ (normal subgroup of) from ⊲ (normal subgroup)
- Pair ⊳ with plain-language description on first use
- Use fonts that cover Mathematical Operators (Cambria Math, STIX, etc.)
- Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Confuse ⊳ (
⊳) with ⊲ (⊲)—they are different symbols - Use padded Unicode notation like U+022B3—the correct value is
U+22B3 - Put CSS escape
\22B3in HTML text nodes - Use
\022B3in CSS—the correct escape is\22B3 - Rely on the glyph alone without accessible description
Key Takeaways
Three HTML references plus CSS all render ⊳
⊳ ⊳ ⊳For CSS stylesheets, use the escape in the content property
\22B3Unicode U+22B3 — NORMAL SUBGROUP OF
Mathematical Operators block (U+2200–U+22FF)
⊳ is the preferred named entity for readable source markup
❓ Frequently Asked Questions
⊳ (named), ⊳ (hex), ⊳ (decimal), or \22B3 in CSS content. All produce ⊳.U+22B3 (NORMAL SUBGROUP OF). Mathematical Operators block (U+2200–U+22FF). Hex 22B3, decimal 8883. Named entity: ⊳.U+22B2 (⊲, ⊲) is NORMAL SUBGROUP. U+22B3 (⊳, ⊳) is NORMAL SUBGROUP OF. They are paired symbols used together in group-theory notation.⊳ is the named HTML entity for U+22B3 and is the most readable option in source markup.Explore More HTML Entities!
Discover 1500+ HTML character references — math symbols, logic operators, and more.
8 people found this page helpful
