HTML Entity for Multiset Union (⊎)

Intermediate
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+228E

What You'll Learn

How to display the Multiset Union symbol (⊎) in HTML using named, hexadecimal, decimal, and CSS escape methods. This character is U+228E (MULTISET UNION) in the Mathematical Operators block (U+2200–U+22FF)—the operator for combining multisets (bags) in set theory and combinatorics.

Render it with the named entity ⊎, ⊎, ⊎, or CSS escape \228E. This is a mathematical Unicode symbol for notation—not executable code. Pair with Multiset (⊌) and Multiset Multiplication (⊍, ⊍) in the multiset operator family.

⚡ Quick Reference — Multiset Union

Unicode U+228E

Mathematical Operators

Hex Code ⊎

Hexadecimal reference

HTML Code ⊎

Decimal reference

Named Entity ⊎

Multiset union (u-plus)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+228E
Hex code       ⊎
HTML code      ⊎
Named entity   ⊎
CSS code       \228E
Meaning        Multiset union operator
Related        U+228C = multiset (⊌)
               U+228D = multiset multiplication (⊍, ⊍)
               U+222A = set union (∪, ∪)
1

Complete HTML Example

This example demonstrates the Multiset Union symbol (⊎) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\228E";
  }
 </style>
</head>
<body>
<p>Multiset Union using Hexadecimal: &#x228E;</p>
<p>Multiset Union using HTML Code: &#8846;</p>
<p>Multiset Union using Named Entity: &uplus;</p>
<p id="point">Multiset Union using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+228E is supported in modern browsers; use a font with Mathematical Operators coverage for consistent glyphs:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Multiset Union symbol (⊎) in set theory contexts:

Operation A ⊎ B
Multiset family ⊌ ⊍ ⊎
Large glyph
vs set union ⊎ multiset   ∪ ordinary
Entity refs &uplus; &#x228E; &#8846; \228E

🧠 How It Works

1

Named Entity

&uplus; is the HTML named entity for Multiset Union (union with plus)—often preferred in readable mathematical markup.

HTML markup
2

Hexadecimal Code

&#x228E; uses the Unicode hexadecimal value 228E. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\228E 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: . Unicode U+228E in Mathematical Operators. Related: Multiset Multiplication (⊍, &cupdot;).

Use Cases

The Multiset Union symbol (⊎) is commonly used in:

🔢 Set theory

Union of multisets (bags) with element multiplicity preserved.

📊 Combinatorics

Formal notation for combining collections with repetition.

📚 Academia

Discrete math textbooks, papers, and lecture materials.

💻 Formal methods

Specification docs describing bag algebra and operations.

🎓 Education

Online courses on sets, combinatorics, and discrete structures.

🌐 Reference guides

Unicode charts and HTML entity documentation.

💡 Best Practices

Do

  • Use &uplus; for readable multiset union markup
  • Pair with ⊌ and ⊍ when documenting multiset algebra
  • Use fonts that cover Mathematical Operators (Cambria Math, etc.)
  • Add aria-label (e.g. “multiset union”) for accessibility
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse &uplus; (⊎) with &cup; (∪)
  • Assume HTML entities perform computation on multisets
  • Put CSS escape \228E in HTML text nodes
  • Mix entity styles randomly in one file
  • Rely on the symbol alone without accessible description

Key Takeaways

1

Three HTML references plus CSS all render ⊎

&#x228E; &#8846; &uplus;
2

For CSS stylesheets, use the escape in the content property

\228E
3

Unicode U+228E — MULTISET UNION

4

&uplus; is the standard named entity

5

Related: Multiset Multiplication (⊍) and Multiset (⊌)

❓ Frequently Asked Questions

Use &uplus; (named), &#x228E; (hex), &#8846; (decimal), or \228E in CSS content. All produce ⊎.
U+228E (MULTISET UNION). Mathematical Operators block (U+2200–U+22FF). Hex 228E, decimal 8846. Named entity: &uplus;.
When documenting multiset union in set theory, combinatorics, formal methods, and academic content involving bag operations.
⊎ (U+228E, &uplus;) is the multiset union operator on bags. ∪ (U+222A, &cup;) is ordinary set union. They look similar but represent different mathematical operations.
HTML entities (&#8846;, &#x228E;, or &uplus;) go directly in markup. The CSS escape \228E 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.

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