Integral With Intersection

Shortcodes

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

Unicode
U+2A19
HTML Code
⨙
HEX Code
⨙
CSS Code
\2A19
JS/JSON
\u2A19
Unix/C/PHP/JAVA
0x2A19
URL-encode
%E2%A8%99

Customize Integral With Intersection

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

  

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

Insert in HTML

1. Direct symbol:
<span>⨙</span>
HTML Code:
<span>&#10777;</span>
HEX Code:
<span>&#x2A19;</span>

Add with CSS

.integral-with-intersection::before {
  content: '\\2A19';
}

Set it in JavaScript

document.querySelector('.integral-with-intersection').textContent = '⨙';
copied