Multiset Union

Shortcodes

Copy useful codes for multiset union symbol ⊎ to use in websites, apps, blogs, and docs.

Unicode
U+228E
HTML Code
⊎
HEX Code
⊎
CSS Code
\228E
JS/JSON
\u228E
Unix/C/PHP/JAVA
0x228E
URL-encode
%E2%8A%8E

Customize Multiset Union

Customize ⊎, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Multiset Union Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⊎</span>
HTML Code:
<span>&#8846;</span>
HEX Code:
<span>&#x228E;</span>

Add with CSS

.multiset-union::before {
  content: '\\228E';
}

Set it in JavaScript

document.querySelector('.multiset-union').textContent = '⊎';
copied