Multiset (⊌) is the mathematical multiset symbol at Unicode U+228C. It is used in set theory for bag/multiset notation. There is no named HTML entity for it.
Remember
Character ⊌
Unicode U+228C
Hex entity ⊌
Decimal ⊌
CSS escape \228C
Named entity (none)
Hex, decimal, CSS, and a typed character all produce the same glyph: ⊌.
Using Hex Code: ⊌
Using HTML Code: ⊌
Using CSS Entity: ⊌
Multiset: A ⊌ B
How It Works
1. Hex:U+228C → ⊌ in HTML. The browser turns it into ⊌.
2. Decimal: same code point as 8844 → ⊌. Same result as hex.
3. CSS: use \228C in content (not an HTML entity). #point::after appends that ⊌ after the paragraph text.
4. Meaning: ⊌ is multiset notation in math — not a programming container, and not ordinary subset ⊂.
Pitfalls & Tips
Common mistakes when working with Multiset.
Named?
No named entity
HTML5 does not define a named entity for U+228C. Use numeric forms.
Meaning
Math, not C++
This entity is a Unicode operator — not std::multiset or any runtime container.
Related
Pair with ⊍ / ⊎
Multiset Multiplication (⊍) and Multiset Union (⊎) are related operators in the same family.
CSS vs HTML
Do not mix escapes
\228C belongs in CSS. ⊌ / ⊌ belong in HTML.
Encoding
Declare UTF-8
If you type ⊌ directly, keep <meta charset="UTF-8"> so the file is not misread.
Semicolon
End references
Always finish with ; — write ⊌, not ⊌.
Compatibility
Browser Support
Multiset (U+228C) and its numeric entity forms (⊌, ⊌, CSS \\228C) are supported in all mainstream browsers with a Unicode-capable font.
✓ Universal support
Multiset (⊌)
Type ⊌, or encode with hex, decimal, or CSS escape — same glyph everywhere fonts support it.
100%Browser coverage
Google ChromeSupported
Yes
Microsoft EdgeSupported
Yes
Mozilla FirefoxSupported
Yes
Apple SafariSupported
Yes
OperaSupported
Yes
Internet ExplorerIE 9+
Yes*
U+228C / entitiesFull support
Bottom line: Type ⊌ for normal UTF-8 text. Prefer ⊌ or ⊌ when encoding must be explicit, and \\228C only inside CSS content.
Remember
Key Takeaways
Unicode: Multiset is U+228C (decimal 8844).
HTML: use ⊌ or ⊌ — no named entity.
CSS: use \228C inside content for generated text.
Meaning: math bag notation — not a programming multiset.
One line:U+228C → type ⊌, or encode as ⊌ / ⊌ / CSS \228C.
Frequently Asked Questions
Use ⊌ (hex), ⊌ (decimal), or the CSS escape \228C in the content property. All render ⊌. There is no named HTML entity for U+228C.
U+228C (MULTISET). Hex 228C, decimal 8844. It belongs to the Mathematical Operators block.
No. U+228C has no named HTML entity. Use numeric references like ⊌ or ⊌.
Use it in set theory and combinatorics for multiset (bag) notation — for example A ⊌ B in formal math content.
HTML entities (⊌ or ⊌) go in markup. The CSS escape \228C is used in stylesheets (usually in the content property of ::before/::after). Both render ⊌.
No. U+228C is a Unicode mathematical symbol. It does not implement or represent a programming container.
🤔
Did you know?
Multiset is Unicode U+228C (decimal 8844) — MULTISET in Mathematical Operators. HTML5 has no named entity — use ⊌ or ⊌. It is a math symbol for bag/multiset notation — not C++ std::multiset. Related: Multiset Multiplication ⊍ and Multiset Union ⊎.