HTML Entity for Right Semidirect Product (⋌)

What You'll Learn
How to display the Right Semidirect Product (⋌) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+22CC (RIGHT SEMIDIRECT PRODUCT) in the Mathematical Operators block (U+2200–U+22FF)—used in group theory and abstract algebra to denote the right semidirect product of groups.
Render it with ⋌ (named), ⋌, ⋌, or CSS \22CC. Do not confuse ⋌ with U+22CB (⋋, left semidirect product / ⋋) or U+22CA (⋊, right normal factor semidirect product / ⋊).
⚡ Quick Reference — Right Semidirect Product
U+22CCMathematical Operators
⋌Hexadecimal reference
⋌Decimal reference
⋌Most readable option
Name Value
──────────── ──────────
Unicode U+22CC
Hex code ⋌
HTML code ⋌
Named entity ⋌
CSS code \22CC
Meaning Right semidirect product
Related U+22CB = left semidirect product (⋋)
U+22CA = right normal factor (⋊)Complete HTML Example
A simple example showing the Right Semidirect Product (⋌) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\22CC";
}
</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
The Right Semidirect Product (⋌) is universally supported in all modern browsers when the font includes Mathematical Operators glyphs:
👀 Live Preview
See the Right Semidirect Product (⋌) rendered live in different contexts:
🧠 How It Works
Hexadecimal Code
⋌ uses the Unicode hexadecimal value 22CC for the right semidirect product. The x prefix indicates hexadecimal format.
Decimal HTML Code
⋌ uses the decimal Unicode value 8908 to display the same character.
Named Entity
⋌ is the semantic named entity — the easiest to read in source HTML and the most self-descriptive option.
CSS Entity
\22CC is used in CSS stylesheets in the content property of pseudo-elements like ::after.
Same visual result
All four methods produce ⋌. Unicode U+22CC is in the Mathematical Operators block. Previous: Right Parenthesis. Next: Right Shaded White Right Arrow.
Use Cases
The Right Semidirect Product (⋌) is commonly used in:
Denote the right semidirect product of two groups (e.g. H ⋌ N).
Express semidirect product constructions in algebraic notation.
Typeset group-theoretic proofs and definitions in HTML or web-based math content.
Display correct notation in online courses and interactive math content.
Document algebraic or categorical structures that use semidirect products.
Support in web-based equation editors and math display systems.
💡 Best Practices
Do
- Use
⋌for readable source markup - Add
aria-labelor surrounding text for accessibility - Verify your font supports Mathematical Operators (U+22CC)
- Keep one entity style per project for consistency
- Distinguish right (⋌) from left (⋋) semidirect product in context
Don’t
- Confuse ⋋ (left) with ⋌ (right semidirect product)
- Confuse ⋌ with ⋊ (right normal factor semidirect product /
⋊) - Use CSS
\22CCinside HTML text nodes - Assume all fonts render math operators identically
- Use the symbol without explaining its right semidirect product meaning on first use
Key Takeaways
Four HTML references plus CSS all render ⋌
⋌ ⋌ ⋌For CSS, use \22CC in the content property
Unicode U+22CC — RIGHT SEMIDIRECT PRODUCT
Prefer ⋌ for readability—it’s the named HTML entity
Previous: Right Parenthesis Next: Right Shaded White Right Arrow
❓ Frequently Asked Questions
⋌ (hex), ⋌ (decimal), ⋌ (named), or \22CC in CSS content. All four methods render ⋌ correctly.U+22CC (RIGHT SEMIDIRECT PRODUCT). Mathematical Operators block (U+2200–U+22FF). Hex 22CC, decimal 8908.⋌, ⋌, or ⋌) go in markup. The CSS escape \22CC is used in stylesheets, typically on ::before or ::after. Both produce ⋌.⋌ is the named HTML entity for U+22CC. You can also use ⋌ (decimal) or ⋌ (hex) and \22CC in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
