Double Union

Shortcodes

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

Unicode
U+22D3
HTML Code
⋓
HEX Code
⋓
CSS Code
\22D3
JS/JSON
\u22D3
Unix/C/PHP/JAVA
0x22D3
URL-encode
%E2%8B%93
copied

Customize Double Union Symbol

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

Insert ⋓ Double Union using HTML

1. Copy-paste Double Union directly:
<span>⋓</span>
2. HTML Decimal Code:
<span>&#8915;</span>
3. Hexadecimal Code:
<span>&#x22D3;</span>
Preview:

Add Double Union symbol with CSS

.double-union::before {
    content: '\\22D3';
}
Preview: Double Union

Double Union JavaScript Code

1. Direct Symbol:
document.querySelector('.double-union').textContent = '⋓';
2. Unicode Escape for ⋓:
document.querySelector('.double-union').textContent = '\u22D3';
Preview: