HTML Entity for Multiset (⊌)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+228C

What Is the Multiset Entity?

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: ⊌.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct character⊌UTF-8 HTML text (default choice)
Hex entity⊌HTML markup
Decimal entity⊌HTML markup
CSS escape\228CStylesheet content
Named entity—Not defined in HTML5

When to Use Which

SituationUse
Multiset / bag notation in mathType ⊌ (UTF-8) or ⊌
Need an entity in HTML source⊌ or ⊌
Generated text via ::before / ::aftercontent: "\228C"
Multiset multiplication (⊍)See Multiset Multiplication
C++ / programming containersWrite code — do not use this math entity

Live Preview

Multiset in a short relation and beside related operators.

Example A ⊌ B
Large glyph ⊌
Bag style {a, a, b} ⊌ {a, b, c}
vs ⊍ / ⊎ ⊌  |  ⊍  |  ⊎
With entities Hex: ⊌ | Decimal: ⊌

Complete HTML Example

One page that shows Multiset with hex, decimal, CSS, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to produce ⊌ in a single document.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Multiset (⊌)</title>
  <style>
    #point::after {
      content: "\228C";
    }
  </style>
</head>
<body>
  <p>Using Hex Code: &#x228C;</p>
  <p>Using HTML Code: &#8844;</p>
  <p id="point">Using CSS Entity: </p>
  <p>Multiset: A ⊌ B</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: U+228C → &#x228C; in HTML. The browser turns it into ⊌.

2. Decimal: same code point as 8844 → &#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 &sub;.

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. &#x228C; / &#8844; 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 &#8844;, not &#8844.

Browser Support

Multiset (U+228C) and its numeric entity forms (&#x228C;, &#8844;, CSS \\228C) are supported in all mainstream browsers with a Unicode-capable font.

✓ Universal support

Multiset (&#x228C;)

Type ⊌, or encode with hex, decimal, or CSS escape — same glyph everywhere fonts support it.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer IE 9+
Yes*
U+228C / entities Full support

Bottom line: Type ⊌ for normal UTF-8 text. Prefer &#x228C; or &#8844; when encoding must be explicit, and \\228C only inside CSS content.

Key Takeaways

  • Unicode: Multiset is U+228C (decimal 8844).
  • HTML: use &#x228C; or &#8844; — 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 &#x228C; / &#8844; / CSS \228C.

Frequently Asked Questions

Use &#x228C; (hex), &#8844; (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 &#x228C; or &#8844;.
Use it in set theory and combinatorics for multiset (bag) notation — for example A ⊌ B in formal math content.
HTML entities (&#8844; or &#x228C;) 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 &#x228C; or &#8844;. It is a math symbol for bag/multiset notation — not C++ std::multiset. Related: Multiset Multiplication ⊍ and Multiset Union ⊎.

Next: Multiset Multiplication

Continue with the Multiset Multiplication (⊍) entity tutorial.

Multiset Multiplication tutorial →

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