Union Above Intersection

Shortcodes

Copy and paste codes for Union Above Intersection symbol ⩆ to use in your websites, apps, blogs, and more.

Unicode
U+2A46
HTML Code
⩆
HEX Code
⩆
CSS Code
\2A46
JS/JSON
\u2A46
Unix/C/PHP/JAVA
0x2A46
URL-encode
%E2%A9%86
copied

Customize Union Above Intersection Symbol

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

Insert ⩆ Union Above Intersection using HTML

1. Copy-paste Union Above Intersection directly:
<span>⩆</span>
2. HTML Decimal Code:
<span>&#10822;</span>
3. Hexadecimal Code:
<span>&#x2A46;</span>
Preview:

Add Union Above Intersection symbol with CSS

.union-above-intersection::before {
    content: '\\2A46';
}
Preview: Union Above Intersection

Union Above Intersection JavaScript Code

1. Direct Symbol:
document.querySelector('.union-above-intersection').textContent = '⩆';
2. Unicode Escape for ⩆:
document.querySelector('.union-above-intersection').textContent = '\u2A46';
Preview: