Finite Part Integral

Shortcodes

Copy useful codes for finite part integral symbol ⨍ to use in websites, apps, blogs, and docs.

Unicode
U+2A0D
HTML Code
⨍
HEX Code
⨍
CSS Code
\2A0D
JS/JSON
\u2A0D
Unix/C/PHP/JAVA
0x2A0D
URL-encode
%E2%A8%8D

Customize Finite Part Integral

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

  

How to use Finite Part Integral Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⨍</span>
HTML Code:
<span>&#10765;</span>
HEX Code:
<span>&#x2A0D;</span>

Add with CSS

.finite-part-integral::before {
  content: '\\2A0D';
}

Set it in JavaScript

document.querySelector('.finite-part-integral').textContent = '⨍';
copied