HTML Entity for Subgroup Or Equal To Reverse (⊵)

What You'll Learn
How to display Subgroup Or Equal To Reverse (⊵) in HTML using named, hexadecimal, decimal, and CSS escape methods. This character is U+22B5 (CONTAINS AS NORMAL SUBGROUP OR EQUAL TO) in the Mathematical Operators block (U+2200–U+22FF)—the reversed counterpart to Subgroup Equal To (⊴, ⊴).
Render it with ⊵, ⊵, ⊵, or CSS \22B5. Compare with Normal Subgroup Of (⊳, ⊳) and Normal Subgroup (⊲, ⊲).
⚡ Quick Reference — Subgroup Or Equal To Reverse
U+22B5Mathematical Operators
⊵Hexadecimal reference
⊵Decimal reference
⊵Most readable option
Name Value
──────────── ──────────
Unicode U+22B5
Hex code ⊵
HTML code ⊵
Named entity ⊵
CSS code \22B5
Meaning Contains as normal subgroup or equal to
Pair with U+22B4 = Subgroup Equal To (⊴, ⊴)
Not the same U+22B3 = Normal Subgroup Of (⊳, ⊳)
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: "\22B5";
}
</style>
</head>
<body>
<p>Group theory (named): G ⊵ H</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 Or Equal To Reverse (⊵) renders in modern browsers when fonts include Mathematical Operators glyphs:
👀 Live Preview
See the reversed subgroup relation in group theory contexts:
🧠 How It Works
Named HTML Entity
⊵ is the semantic named entity for U+22B5—the most readable option in source HTML.
Hexadecimal Code
⊵ references code point U+22B5 using hex digits 22B5.
Decimal HTML Code
⊵ is the decimal equivalent (8885) for the same character.
CSS Entity
\22B5 is the CSS escape for U+22B5, used in the content property of pseudo-elements.
Same visual result
All four methods produce ⊵. Unicode U+22B5 in Mathematical Operators (U+2200–U+22FF).
Use Cases
Subgroup Or Equal To Reverse (⊵) commonly appears in:
Expressing reversed 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 - Pair with
⊴(⊴) when showing both directions of a relation - 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+022B5—the correct value is
U+22B5 - Use CSS
\022B5with a leading zero—prefer\22B5 - Confuse ⊵ with ⊴ (
⊴) or ⊳ (⊳) - Use the symbol outside proper mathematical or group-theory context
- Put CSS escape
\22B5in HTML text nodes
Key Takeaways
Four ways to render U+22B5 in HTML and CSS
⊵ ⊵For CSS stylesheets, use \22B5 in the content property
U+22B5 — CONTAINS AS NORMAL SUBGROUP OR EQUAL TO (⊵)
Reversed counterpart to Subgroup Equal To ⊴ (⊴)
Previous: Subgroup Equal To Next: Subscript Equals
❓ Frequently Asked Questions
⊵ (named), ⊵ (hex), ⊵ (decimal), or \22B5 in CSS content. All four render ⊵.U+22B5 (CONTAINS AS NORMAL SUBGROUP OR EQUAL TO). Mathematical Operators (U+2200–U+22FF). Hex 22B5, decimal 8885, named entity ⊵.⊵) is the reversed relation CONTAINS AS NORMAL SUBGROUP OR EQUAL TO. ⊴ (U+22B4, ⊴) is NORMAL SUBGROUP OF. They are paired symbols used in opposite directions in group theory notation.⊵ is the named HTML entity for U+22B5. It is equivalent to ⊵ (decimal) and ⊵ (hex).Explore More HTML Entities!
Discover 1500+ HTML character references — group theory, math operators, and more.
8 people found this page helpful
