Integral With Double Stroke

Shortcodes

Copy useful codes for integral with double stroke symbol ⨎ to use in websites, apps, blogs, and docs.

Unicode
U+2A0E
HTML Code
⨎
HEX Code
⨎
CSS Code
\2A0E
JS/JSON
\u2A0E
Unix/C/PHP/JAVA
0x2A0E
URL-encode
%E2%A8%8E

Customize Integral With Double Stroke

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

  

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

Insert in HTML

1. Direct symbol:
<span>⨎</span>
HTML Code:
<span>&#10766;</span>
HEX Code:
<span>&#x2A0E;</span>

Add with CSS

.integral-with-double-stroke::before {
  content: '\\2A0E';
}

Set it in JavaScript

document.querySelector('.integral-with-double-stroke').textContent = '⨎';
copied