Finite Part Integral

Shortcodes

Copy and paste codes for Finite Part Integral symbol ⨍ to use in your websites, apps, blogs, and more.

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

Customize Finite Part Integral Symbol

Customize ⨍ symbol as you like and download Finite Part Integral as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Finite Part Integral symbol in HTML, CSS, and JS?

Insert ⨍ Finite Part Integral using HTML

1. Copy-paste Finite Part Integral directly:
<span>⨍</span>
2. HTML Decimal Code:
<span>&#10765;</span>
3. Hexadecimal Code:
<span>&#x2A0D;</span>
Preview:

Add Finite Part Integral symbol with CSS

.finite-part-integral::before {
    content: '\\2A0D';
}
Preview: Finite Part Integral

Finite Part Integral JavaScript Code

1. Direct Symbol:
document.querySelector('.finite-part-integral').textContent = '⨍';
2. Unicode Escape for ⨍:
document.querySelector('.finite-part-integral').textContent = '\u2A0D';
Preview: