Multiset

Shortcodes

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

Unicode
U+228C
HTML Code
⊌
HEX Code
⊌
CSS Code
\228C
JS/JSON
\u228C
Unix/C/PHP/JAVA
0x228C
URL-encode
%E2%8A%8C
copied

Customize Multiset Symbol

Customize ⊌ symbol as you like and download Multiset 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 symbol in HTML, CSS, and JS?

Insert ⊌ Multiset using HTML

1. Copy-paste Multiset directly:
<span>⊌</span>
2. HTML Decimal Code:
<span>&#8844;</span>
3. Hexadecimal Code:
<span>&#x228C;</span>
Preview:

Add Multiset symbol with CSS

.multiset::before {
    content: '\\228C';
}
Preview: Multiset

Multiset JavaScript Code

1. Direct Symbol:
document.querySelector('.multiset').textContent = '⊌';
2. Unicode Escape for ⊌:
document.querySelector('.multiset').textContent = '\u228C';
Preview: