HTML Entity for Subgroup Equal To (⊴)

What You'll Learn
How to display Subgroup Equal To (⊴) in HTML using named, hexadecimal, decimal, and CSS escape methods. This character is U+22B4 (NORMAL SUBGROUP OF) in the Mathematical Operators block (U+2200–U+22FF)—used in group theory to express that one group is a normal subgroup of or equal to another.
Render it with ⊴, ⊴, ⊴, or CSS \22B4. Compare with Normal Subgroup (⊲, ⊲) and Normal Subgroup Of (⊳, ⊳).
⚡ Quick Reference — Subgroup Equal To
U+22B4Mathematical Operators
⊴Hexadecimal reference
⊴Decimal reference
⊴Most readable option
Name Value
──────────── ──────────
Unicode U+22B4
Hex code ⊴
HTML code ⊴
Named entity ⊴
CSS code \22B4
Meaning Normal subgroup of
Not the same U+22B2 = Normal Subgroup (⊲, ⊲)
U+22B3 = Normal Subgroup Of (⊳, ⊳)
U+22B5 = Contains as normal subgroup (⊵, ⊵)
Block Mathematical Operators (U+2200–U+22FF)Complete HTML Example
A simple example showing ⊴ using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\22B4";
}
</style>
</head>
<body>
<p>Group theory (named): H ⊴ G</p>
<p>Group theory (hex): A ⊴ B</p>
<p>Group theory (decimal): K ⊴ L</p>
<p id="point">Group theory (CSS): Notation </p>
</body>
</html>🌐 Browser Support
Subgroup Equal To (⊴) renders in modern browsers when fonts include Mathematical Operators glyphs:
👀 Live Preview
See the subgroup equal to relation in group theory contexts:
🧠 How It Works
Named HTML Entity
⊴ is the semantic named entity for U+22B4—the most readable option in source HTML.
Hexadecimal Code
⊴ references code point U+22B4 using hex digits 22B4.
Decimal HTML Code
⊴ is the decimal equivalent (8884) for the same character.
CSS Entity
\22B4 is the CSS escape for U+22B4, used in the content property of pseudo-elements.
Same visual result
All four methods produce ⊴. Unicode U+22B4 in Mathematical Operators (U+2200–U+22FF).
Use Cases
Subgroup Equal To (⊴) commonly appears in:
Expressing normal subgroup relations between groups.
Research articles and textbooks on abstract algebra.
Online courses and tutorials teaching group theory.
Technical documentation for mathematical notation.
Theorem statements and logical derivations in algebra.
Interactive tools displaying subgroup relation symbols.
💡 Best Practices
Do
- Prefer
⊴for readable HTML source code - Use
⊴or⊴when named entities are unavailable - Provide context or alt text for screen readers in mathematical content
- Use math-friendly fonts that support Mathematical Operators
- Pick one reference style and stay consistent per project
Don’t
- Use padded Unicode notation like U+022B4—the correct value is
U+22B4 - Use CSS
\022B4with a leading zero—prefer\22B4 - Confuse ⊴ with ⊲ (
⊲) or ⊳ (⊳) - Use the symbol outside proper mathematical or group-theory context
- Put CSS escape
\22B4in HTML text nodes
Key Takeaways
Four ways to render U+22B4 in HTML and CSS
⊴ ⊴For CSS stylesheets, use \22B4 in the content property
U+22B4 — NORMAL SUBGROUP OF (⊴)
Related: Normal Subgroup ⊲ and Normal Subgroup Of ⊳
Previous: Strictly Equivalent To Next: Subgroup Or Equal To Reverse
❓ Frequently Asked Questions
⊴ (named), ⊴ (hex), ⊴ (decimal), or \22B4 in CSS content. All four render ⊴.U+22B4 (NORMAL SUBGROUP OF). Mathematical Operators (U+2200–U+22FF). Hex 22B4, decimal 8884, named entity ⊴.⊴ is the named HTML entity for U+22B4. It is equivalent to ⊴ (decimal) and ⊴ (hex).⊴) is NORMAL SUBGROUP OF with an equals bar. ⊲ (U+22B2, ⊲) is NORMAL SUBGROUP without the equals bar. They are separate relation symbols in group theory.Explore More HTML Entities!
Discover 1500+ HTML character references — group theory, math operators, and more.
8 people found this page helpful
