Integral With Union

Shortcodes

Copy useful codes for integral with union symbol ⨚ to use in websites, apps, blogs, and docs.

Unicode
U+2A1A
HTML Code
⨚
HEX Code
⨚
CSS Code
\2A1A
JS/JSON
\u2A1A
Unix/C/PHP/JAVA
0x2A1A
URL-encode
%E2%A8%9A

Customize Integral With Union

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

  

How to use Integral With Union Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⨚</span>
HTML Code:
<span>&#10778;</span>
HEX Code:
<span>&#x2A1A;</span>

Add with CSS

.integral-with-union::before {
  content: '\\2A1A';
}

Set it in JavaScript

document.querySelector('.integral-with-union').textContent = '⨚';
copied