HTML Entity for Subgroup Equal To (⊴)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+22B4

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

Unicode U+22B4

Mathematical Operators

Hex Code ⊴

Hexadecimal reference

HTML Code ⊴

Decimal reference

Named Entity ⊴

Most readable option

Reference Table
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)
1

Complete HTML Example

A simple example showing ⊴ using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\22B4";
  }
 </style>
</head>
<body>
<p>Group theory (named): H &ltrie; G</p>
<p>Group theory (hex): A &#x22B4; B</p>
<p>Group theory (decimal): K &#8884; L</p>
<p id="point">Group theory (CSS): Notation </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

Subgroup Equal To (⊴) renders in modern browsers when fonts include Mathematical Operators glyphs:

Chrome1+
Firefox1+
Safari3.1+
Edge12+
Opera4+
Android4.4+
iOS Safari3.2+

👀 Live Preview

See the subgroup equal to relation in group theory contexts:

Single symbol
Group relation H ⊴ G
Named entity K &ltrie; L
Not the same as ⊴ (Subgroup Equal)  |  ⊲ (Normal Subgroup)  |  ⊵ (Reverse, &rtrie;)
Numeric refs &ltrie; &#x22B4; &#8884; \22B4

🧠 How It Works

1

Named HTML Entity

&ltrie; is the semantic named entity for U+22B4—the most readable option in source HTML.

HTML markup
2

Hexadecimal Code

&#x22B4; references code point U+22B4 using hex digits 22B4.

HTML markup
3

Decimal HTML Code

&#8884; is the decimal equivalent (8884) for the same character.

HTML markup
4

CSS Entity

\22B4 is the CSS escape for U+22B4, used in the content property of pseudo-elements.

CSS stylesheet
=

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:

📊 Group theory

Expressing normal subgroup relations between groups.

🏫 Academic papers

Research articles and textbooks on abstract algebra.

📚 Educational sites

Online courses and tutorials teaching group theory.

🔬 Scientific docs

Technical documentation for mathematical notation.

📖 Formal proofs

Theorem statements and logical derivations in algebra.

💻 Math applications

Interactive tools displaying subgroup relation symbols.

💡 Best Practices

Do

  • Prefer &ltrie; for readable HTML source code
  • Use &#x22B4; or &#8884; 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 \022B4 with a leading zero—prefer \22B4
  • Confuse ⊴ with ⊲ (&vltri;) or ⊳ (&vrtri;)
  • Use the symbol outside proper mathematical or group-theory context
  • Put CSS escape \22B4 in HTML text nodes

Key Takeaways

1

Four ways to render U+22B4 in HTML and CSS

&ltrie; &#x22B4;
2

For CSS stylesheets, use \22B4 in the content property

3

U+22B4 — NORMAL SUBGROUP OF (⊴)

4

Related: Normal Subgroup ⊲ and Normal Subgroup Of ⊳

❓ Frequently Asked Questions

Use &ltrie; (named), &#x22B4; (hex), &#8884; (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 &ltrie;.
&ltrie; is the named HTML entity for U+22B4. It is equivalent to &#8884; (decimal) and &#x22B4; (hex).
For group theory notation, abstract algebra, mathematical expressions, academic papers, educational materials, formal proofs, and any content requiring the normal subgroup relation symbol.
⊴ (U+22B4, &ltrie;) is NORMAL SUBGROUP OF with an equals bar. ⊲ (U+22B2, &vltri;) 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.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful