Intersection Above Union

Shortcodes

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

Unicode
U+2A47
HTML Code
⩇
HEX Code
⩇
CSS Code
\2A47
JS/JSON
\u2A47
Unix/C/PHP/JAVA
0x2A47
URL-encode
%E2%A9%87
copied

Customize Intersection Above Union Symbol

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

Insert ⩇ Intersection Above Union using HTML

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

Add Intersection Above Union symbol with CSS

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

Intersection Above Union JavaScript Code

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