HTML Entity for Left Normal Factor Semidirect Product (⋉)

What You'll Learn
How to display the Left Normal Factor Semidirect Product (⋉) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+22C9 (LEFT NORMAL FACTOR SEMIDIRECT PRODUCT) in the Mathematical Operators block (U+2200–U+22FF)—used in group theory and abstract algebra for semidirect product notation.
Render it with ⋉ (named), ⋉, ⋉, or CSS \22C9. Related: U+22C8 (⋈, bowtie / ⋈), U+22CA (⋊, right normal factor semidirect product / ⋊).
⚡ Quick Reference — Left Normal Factor Semidirect Product
U+22C9Mathematical Operators block
⋉Hexadecimal reference
⋉Decimal reference
⋉Most readable option
Name Value
──────────── ──────────
Unicode U+22C9
Hex code ⋉
HTML code ⋉
Named entity ⋉
CSS code \22C9
Meaning Left normal factor semidirect product
Related U+22CA = right normal factor (⋊)
U+22C8 = bowtie (⋈)Complete HTML Example
A simple example showing the Left Normal Factor Semidirect Product (⋉) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\22C9";
}
</style>
</head>
<body>
<p>Symbol using Hexadecimal: ⋉</p>
<p>Symbol using HTML Code: ⋉</p>
<p>Symbol using HTML Entity: ⋉</p>
<p id="point">Symbol using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Left Normal Factor Semidirect Product (⋉) renders in modern browsers when the font includes Mathematical Operators glyphs:
👀 Live Preview
See the Left Normal Factor Semidirect Product (⋉) in algebra and math contexts:
🧠 How It Works
Hexadecimal Code
⋉ uses the Unicode hexadecimal value 22C9 for the Left Normal Factor Semidirect Product. The x prefix indicates hexadecimal format.
Decimal HTML Code
⋉ uses the decimal Unicode value 8905 to display the same character. This is one of the most commonly used methods.
CSS Entity
\22C9 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Named Entity
⋉ is the named entity for the left normal factor semidirect product — the easiest to read in algebra and group theory markup.
Same visual result
All four methods produce ⋉. Unicode U+22C9 sits in the Mathematical Operators block. Previous: Left Harpoon Over Right Harpoon.
Use Cases
The Left Normal Factor Semidirect Product (⋉) is commonly used in:
Express semidirect products such as G = N ⋉ H in web-based math notes.
Formal definitions of group extensions and factor structures.
Online algebra courses, lecture slides, and reference material.
HTML preprints and summaries using standard operator notation.
University math pages teaching semidirect product constructions.
Document and teach HTML entity usage for math operator symbols.
💡 Best Practices
Do
- Prefer
⋉in HTML for readability - Use fonts that support the Mathematical Operators block (U+22C9)
- Set
<meta charset="utf-8"> - Pair ⋉ with context (group theory, algebra) so meaning is clear
- Keep one encoding style per project for consistency
- Distinguish ⋉ from ⋊ when left vs right normal factor matters
Don’t
- Confuse
⋉(U+22C9) with×(U+00D7, multiplication sign) - Confuse
⋉(U+22C9) with⋊(U+22CA, right normal factor) - Use CSS
\22C9inside HTML text nodes - Assume all fonts render math operator glyphs identically
- Mix named and numeric entities inconsistently in the same component
Key Takeaways
Four ways to render U+22C9 in HTML and CSS
⋉ ⋉ ⋉For CSS, use \22C9 in the content property
Unicode U+22C9 — LEFT NORMAL FACTOR SEMIDIRECT PRODUCT
Mathematical Operators block (U+2200–U+22FF) — named entity ⋉
Previous: Left Harpoon Over Right Harpoon (⇋) Next: Left Open Headed Arrow
❓ Frequently Asked Questions
⋉ (named), ⋉ (hex), ⋉ (decimal), or \22C9 in CSS content. All four methods render ⋉ correctly.U+22C9 (LEFT NORMAL FACTOR SEMIDIRECT PRODUCT). Mathematical Operators block (U+2200–U+22FF). Hex 22C9, decimal 8905. Used for left normal factor semidirect product notation.⋉, ⋉, ⋉) go in markup. The CSS escape \22C9 is used in stylesheets, typically on ::before or ::after. Both produce ⋉.⋉ is the named HTML entity for U+22C9. You can also use ⋉ (decimal) or ⋉ (hex) and \22C9 in CSS.Explore More HTML Entities!
Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, and more.
8 people found this page helpful
