Intersection Above Union

Shortcodes

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

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

Customize Intersection Above Union

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

  

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

Insert in HTML

1. Direct symbol:
<span>⩇</span>
HTML Code:
<span>&#10823;</span>
HEX Code:
<span>&#x2A47;</span>

Add with CSS

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

Set it in JavaScript

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