Multiset Union

Shortcodes

Copy and paste codes for Multiset Union symbol ⊎ to use in your websites, apps, blogs, and more.

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

Customize Multiset Union Symbol

Customize ⊎ symbol as you like and download Multiset Union as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Multiset Union symbol in HTML, CSS, and JS?

Insert ⊎ Multiset Union using HTML

1. Copy-paste Multiset Union directly:
<span>⊎</span>
2. HTML Decimal Code:
<span>&#8846;</span>
3. Hexadecimal Code:
<span>&#x228E;</span>
Preview:

Add Multiset Union symbol with CSS

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

Multiset Union JavaScript Code

1. Direct Symbol:
document.querySelector('.multiset-union').textContent = '⊎';
2. Unicode Escape for ⊎:
document.querySelector('.multiset-union').textContent = '\u228E';
Preview: