HTML Entity for Left Normal Factor Semidirect Product (⋉)

Beginner
⏱️ 5 min read
📚 Updated: Aug 2025
🎯 1 Code Example
Unicode U+22C9

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

Unicode U+22C9

Mathematical Operators block

Hex Code ⋉

Hexadecimal reference

HTML Code ⋉

Decimal reference

Named Entity ⋉

Most readable option

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

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:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\22C9";
  }
 </style>
</head>
<body>
<p>Symbol using Hexadecimal: &#x22C9;</p>
<p>Symbol using HTML Code: &#8905;</p>
<p>Symbol using HTML Entity: &ltimes;</p>
<p id="point">Symbol using CSS Entity: </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The Left Normal Factor Semidirect Product (⋉) renders in modern browsers when the font includes Mathematical Operators glyphs:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Left Normal Factor Semidirect Product (⋉) in algebra and math contexts:

Group theory G = NH
Semidirect product A ⋉ B denotes a left normal factor semidirect product.
Large glyph
Operator comparison ⋉ ⋊ ⋈ ⊻
Entity refs &ltimes; &#x22C9; &#8905; \22C9

🧠 How It Works

1

Hexadecimal Code

&#x22C9; uses the Unicode hexadecimal value 22C9 for the Left Normal Factor Semidirect Product. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#8905; uses the decimal Unicode value 8905 to display the same character. This is one of the most commonly used methods.

HTML markup
3

CSS Entity

\22C9 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
4

Named Entity

&ltimes; is the named entity for the left normal factor semidirect product — the easiest to read in algebra and group theory markup.

HTML 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:

📐 Group theory

Express semidirect products such as G = NH in web-based math notes.

📜 Abstract algebra

Formal definitions of group extensions and factor structures.

📚 Textbooks

Online algebra courses, lecture slides, and reference material.

📝 Research papers

HTML preprints and summaries using standard operator notation.

🧮 Education

University math pages teaching semidirect product constructions.

🗃 Entity reference

Document and teach HTML entity usage for math operator symbols.

💡 Best Practices

Do

  • Prefer &ltimes; 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 &ltimes; (U+22C9) with &times; (U+00D7, multiplication sign)
  • Confuse &ltimes; (U+22C9) with &rtimes; (U+22CA, right normal factor)
  • Use CSS \22C9 inside HTML text nodes
  • Assume all fonts render math operator glyphs identically
  • Mix named and numeric entities inconsistently in the same component

Key Takeaways

1

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

&ltimes; &#x22C9; &#8905;
2

For CSS, use \22C9 in the content property

3

Unicode U+22C9 — LEFT NORMAL FACTOR SEMIDIRECT PRODUCT

4

Mathematical Operators block (U+2200–U+22FF) — named entity &ltimes;

❓ Frequently Asked Questions

Use &ltimes; (named), &#x22C9; (hex), &#8905; (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.
In group theory, abstract algebra, mathematical papers, semidirect product expressions, and any content requiring the left normal factor semidirect product operator.
Named and numeric HTML references (&ltimes;, &#8905;, &#x22C9;) go in markup. The CSS escape \22C9 is used in stylesheets, typically on ::before or ::after. Both produce ⋉.
Yes. &ltimes; is the named HTML entity for U+22C9. You can also use &#8905; (decimal) or &#x22C9; (hex) and \22C9 in CSS.

Explore More HTML Entities!

Discover 1500+ HTML character references — currency symbols, arrows, math operators, emojis, 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