Integral With Overbar

Shortcodes

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

Unicode
U+2A1B
HTML Code
⨛
HEX Code
⨛
CSS Code
\2A1B
JS/JSON
\u2A1B
Unix/C/PHP/JAVA
0x2A1B
URL-encode
%E2%A8%9B

Customize Integral With Overbar

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

  

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

Insert in HTML

1. Direct symbol:
<span>⨛</span>
HTML Code:
<span>&#10779;</span>
HEX Code:
<span>&#x2A1B;</span>

Add with CSS

.integral-with-overbar::before {
  content: '\\2A1B';
}

Set it in JavaScript

document.querySelector('.integral-with-overbar').textContent = '⨛';
copied