HTML Entity for Multiset Multiplication (⊍)

What You'll Learn
How to display the Multiset Multiplication symbol (⊍) in HTML using named, hexadecimal, decimal, and CSS escape methods. This character is U+228D (MULTISET MULTIPLICATION) in the Mathematical Operators block (U+2200–U+22FF)—the operator for multiplying multisets (bags) in set theory and combinatorics.
Render it with the named entity ⊍, ⊍, ⊍, or CSS escape \228D. This is a mathematical Unicode symbol for notation—not executable code. Pair with Multiset (⊌) and Multiset Union (⊎, ⊎) in the multiset operator family.
⚡ Quick Reference — Multiset Multiplication
U+228DMathematical Operators
⊍Hexadecimal reference
⊍Decimal reference
⊍Multiset multiplication (cup dot)
Name Value
──────────── ──────────
Unicode U+228D
Hex code ⊍
HTML code ⊍
Named entity ⊍
CSS code \228D
Meaning Multiset multiplication operator
Related U+228C = multiset (⊌)
U+228E = multiset union (⊎, ⊎)Complete HTML Example
This example demonstrates the Multiset Multiplication symbol (⊍) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\228D";
}
</style>
</head>
<body>
<p>Multiset Multiplication using Hexadecimal: ⊍</p>
<p>Multiset Multiplication using HTML Code: ⊍</p>
<p>Multiset Multiplication using Named Entity: ⊍</p>
<p id="point">Multiset Multiplication using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+228D is supported in modern browsers; use a font with Mathematical Operators coverage for consistent glyphs:
👀 Live Preview
See the Multiset Multiplication symbol (⊍) in set theory contexts:
🧠 How It Works
Named Entity
⊍ is the HTML named entity for Multiset Multiplication (union with dot)—often preferred in readable mathematical markup.
Hexadecimal Code
⊍ uses the Unicode hexadecimal value 228D. The x prefix indicates hexadecimal format.
Decimal HTML Code
⊍ uses the decimal Unicode value 8845 to display the same character.
CSS Entity
\228D is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce: ⊍. Unicode U+228D in Mathematical Operators. Related: Multiset Union (⊎, ⊎).
Use Cases
The Multiset Multiplication symbol (⊍) is commonly used in:
Multiset multiplication on bags and combinatorial collections.
Formal notation for operations on multisets with repetition.
Discrete math textbooks, papers, and lecture materials.
Specification docs describing bag algebra and operations.
Online courses on sets, combinatorics, and discrete structures.
Unicode charts and HTML entity documentation.
💡 Best Practices
Do
- Use
⊍for readable multiset multiplication markup - Pair with ⊌ and ⊎ when documenting multiset algebra
- Use fonts that cover Mathematical Operators (Cambria Math, etc.)
- Add
aria-label(e.g. “multiset multiplication”) for accessibility - Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Confuse
⊍(⊍) with×(×) - Assume HTML entities perform computation on multisets
- Put CSS escape
\228Din HTML text nodes - Mix entity styles randomly in one file
- Rely on the symbol alone without accessible description
Key Takeaways
Three HTML references plus CSS all render ⊍
⊍ ⊍ ⊍For CSS stylesheets, use the escape in the content property
\228DUnicode U+228D — MULTISET MULTIPLICATION
⊍ is the standard named entity
Related: Multiset (⊌) and Multiset Union (⊎)
❓ Frequently Asked Questions
⊍ (named), ⊍ (hex), ⊍ (decimal), or \228D in CSS content. All produce ⊍.U+228D (MULTISET MULTIPLICATION). Mathematical Operators block (U+2200–U+22FF). Hex 228D, decimal 8845. Named entity: ⊍.U+228C) is the general Multiset symbol. ⊍ (U+228D, ⊍) is specifically the multiset multiplication operator. They are related but distinct notation symbols.⊍, ⊍, or ⊍) go directly in markup. The CSS escape \228D is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.Explore More HTML Entities!
Discover 1500+ HTML character references — math operators, relations, and more.
8 people found this page helpful
