HTML Entity for Multiset (⊌)

What You'll Learn
How to display the Multiset symbol (⊌) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+228C (MULTISET) in the Mathematical Operators block (U+2200–U+22FF)—used in set theory and combinatorics for multiset (bag) notation.
Render it with ⊌, ⊌, or CSS escape \228C. There is no named HTML entity. This is a mathematical Unicode symbol—not a programming data structure like C++ std::multiset. Related multiset operators include Multiset Multiplication (⊍) and bag membership in Z notation (⋿).
⚡ Quick Reference — Multiset
U+228CMathematical Operators
⊌Hexadecimal reference
⊌Decimal reference
—Use numeric codes only
Name Value
──────────── ──────────
Unicode U+228C
Hex code ⊌
HTML code ⊌
Named entity (none)
CSS code \228C
Meaning Multiset (bag) notation
Related U+228D = multiset multiplication (⊍)
U+22FF = Z bag membership (⋿)Complete HTML Example
This example demonstrates the Multiset symbol (⊌) using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\228C";
}
</style>
</head>
<body>
<p>Multiset using Hexadecimal: ⊌</p>
<p>Multiset using HTML Code: ⊌</p>
<p id="point">Multiset using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+228C is supported in modern browsers; use a font with Mathematical Operators coverage for consistent glyphs:
👀 Live Preview
See the Multiset symbol (⊌) in set theory contexts:
🧠 How It Works
Hexadecimal Code
⊌ uses the Unicode hexadecimal value 228C to display the Multiset symbol. The x prefix indicates hexadecimal format.
Decimal HTML Code
⊌ uses the decimal Unicode value 8844 to display the same character.
CSS Entity
\228C is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce: ⊌. Unicode U+228C in Mathematical Operators. See also Multiset Multiplication (⊍).
Use Cases
The Multiset symbol (⊌) is commonly used in:
Multiset and bag relations in mathematical notation.
Counting problems with repeated elements and bags.
Textbooks, papers, and lecture notes on discrete math.
Specification docs alongside Z notation and bag types.
Online courses and tutorials on sets and combinatorics.
Unicode charts and HTML entity documentation.
💡 Best Practices
Do
- Use numeric codes
⊌or⊌in HTML markup - Use math fonts (Cambria Math, STIX) for consistent operator glyphs
- Pair with related multiset operators when documenting notation
- Add
aria-label(e.g. “multiset”) for accessibility - Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Confuse this math symbol with C++
std::multisetcontainers - Assume ⊌ means ordinary set subset without context
- Put CSS escape
\228Cin HTML text nodes - Mix entity styles randomly in one file
- Rely on the symbol alone without accessible description
Key Takeaways
Hex, decimal, and CSS all render ⊌
⊌ ⊌For CSS stylesheets, use the escape in the content property
\228CUnicode U+228C — MULTISET
No named HTML entity—use numeric references
Next: Multiset Multiplication (⊍)
❓ Frequently Asked Questions
⊌ (hex), ⊌ (decimal), or \228C in CSS content. All produce ⊌. There is no named entity.U+228C (MULTISET). Mathematical Operators block (U+2200–U+22FF). Hex 228C, decimal 8844.⊌ or ⊌) go directly in markup. The CSS escape \228C 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
