Union Above Intersection

Shortcodes

Copy useful codes for union above intersection symbol ⩆ to use in websites, apps, blogs, and docs.

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

Customize Union Above Intersection

Customize ⩆, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Union Above Intersection Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⩆</span>
HTML Code:
<span>&#10822;</span>
HEX Code:
<span>&#x2A46;</span>

Add with CSS

.union-above-intersection::before {
  content: '\\2A46';
}

Set it in JavaScript

document.querySelector('.union-above-intersection').textContent = '⩆';
copied