Intersection Above Bar Above Union

Shortcodes

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

Unicode
U+2A49
HTML Code
⩉
HEX Code
⩉
CSS Code
\2A49
JS/JSON
\u2A49
Unix/C/PHP/JAVA
0x2A49
URL-encode
%E2%A9%89

Customize Intersection Above Bar Above Union

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

  

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

Insert in HTML

1. Direct symbol:
<span>⩉</span>
HTML Code:
<span>&#10825;</span>
HEX Code:
<span>&#x2A49;</span>

Add with CSS

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

Set it in JavaScript

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