Integral With Underbar

Shortcodes

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

Unicode
U+2A1C
HTML Code
⨜
HEX Code
⨜
CSS Code
\2A1C
JS/JSON
\u2A1C
Unix/C/PHP/JAVA
0x2A1C
URL-encode
%E2%A8%9C

Customize Integral With Underbar

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

  

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

Insert in HTML

1. Direct symbol:
<span>⨜</span>
HTML Code:
<span>&#10780;</span>
HEX Code:
<span>&#x2A1C;</span>

Add with CSS

.integral-with-underbar::before {
  content: '\\2A1C';
}

Set it in JavaScript

document.querySelector('.integral-with-underbar').textContent = '⨜';
copied