HTML Entity for Wreath Product (≀)

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

What You'll Learn

How to display the Wreath Product symbol (≀) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+2240 (WREATH PRODUCT) in the Mathematical Operators block (U+2200–U+22FF)—the standard notation for the wreath product operation in group theory and abstract algebra.

Render it with ≀, ≀, ≀, or CSS escape \2240. For complex formulas, consider MathML or LaTeX rendering in addition to HTML entities.

⚡ Quick Reference — Wreath Product

Unicode U+2240

Mathematical Operators

Hex Code ≀

Hexadecimal reference

HTML Code ≀

Decimal reference

Named Entity ≀

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2240
Hex code       ≀
HTML code      ≀
Named entity   ≀
CSS code       \2240
Meaning        Wreath product (group theory)
Related        U+22BB = XOR (⊻, ⊻)
Block          Mathematical Operators (U+2200–U+22FF)
1

Complete HTML Example

A simple example showing the Wreath Product symbol (≀) using hexadecimal code, decimal HTML code, named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #op:after{
   content: "\2240";
  }
 </style>
</head>
<body>
<p>Wreath Product (hex): G &#x2240; H</p>
<p>Wreath Product (decimal): G &#8768; H</p>
<p>Wreath Product (named): G &wreath; H</p>
<p id="op">Wreath Product (CSS): G  H</p>
</body>
</html>
Try It Yourself

🌐 Browser Support

U+2240 and the &wreath; named entity are widely supported in modern browsers:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the Wreath Product symbol (≀) in mathematical context:

Group expressionGH
Large glyph
In proseThe wreath product ≀ combines permutation and direct-product structure.
Named entityG &wreath; H
Numeric refs&#x2240; &#8768; \2240

🧠 How It Works

1

Hexadecimal Code

&#x2240; uses the Unicode hexadecimal value 2240 to display the Wreath Product symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#8768; uses the decimal Unicode value 8768 to display the same character.

HTML markup
3

Named Entity

&wreath; is the semantic named entity for U+2240—the easiest to read in source HTML.

HTML markup
4

CSS Entity

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

CSS stylesheet
=

Same visual result

All four methods produce the glyph: . Unicode U+2240 is WREATH PRODUCT in the Mathematical Operators block (U+2200–U+22FF).

Use Cases

The Wreath Product symbol (≀) is commonly used in:

📐 Mathematical expressions

Wreath product operations in group theory (e.g. GH).

📚 Group theory docs

Textbooks, lecture notes, and research papers on permutation groups.

📜 Abstract algebra

Educational content covering wreath products and related constructions.

📄 Academic papers

Mathematical publications and preprints requiring standard operator notation.

💻 Math software

Documentation for computer algebra systems and algorithm descriptions.

🎓 Education

Courses and tutorials explaining wreath product definitions and examples.

♿ Accessibility

Pair ≀ with clear text or aria-label for non-visual readers.

💡 Best Practices

Do

  • Prefer &wreath; in HTML for readability when supported
  • Use &#x2240; or &#8768; when you need explicit numeric references
  • Use fonts that support Mathematical Operators glyphs
  • Consider MathML or LaTeX for complex multi-line formulas
  • Pick one entity style per project for consistency

Don’t

  • Confuse ≀ (wreath product) with similar math operators in U+2200–U+22FF
  • Put CSS escape \2240 in HTML text nodes
  • Rely on the glyph alone without context in educational content
  • Mix entity styles randomly in one file
  • Assume every font renders ≀ clearly at small sizes

Key Takeaways

1

Four ways to render ≀ in HTML and CSS

&#x2240; &#8768;
2

Named entity for readable markup

&wreath;
3

CSS content escape

\2240
4

Unicode U+2240 — WREATH PRODUCT (group theory)

❓ Frequently Asked Questions

Use &#x2240; (hex), &#8768; (decimal), &wreath; (named entity), or \2240 in CSS content. All four methods render ≀.
U+2240 (WREATH PRODUCT). Mathematical Operators block U+2200–U+22FF. Hex 2240, decimal 8768. Standard notation for the wreath product in group theory.
For mathematical expressions, group theory documentation, abstract algebra content, academic papers, math software documentation, and educational resources about wreath products.
HTML entities (&#8768;, &#x2240;, or &wreath;) go directly in markup. The CSS escape \2240 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Yes. &wreath; is the named HTML entity for U+2240 (≀) and is more readable than numeric codes in source markup.

Explore More HTML Entities!

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