Integral

Shortcodes

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

Unicode
U+222B
HTML Code
∫
HEX Code
∫
CSS Code
\222B
JS/JSON
\u222B
Unix/C/PHP/JAVA
0x222B
URL-encode
%E2%88%AB
copied

Customize Integral Symbol

Customize ∫ symbol as you like and download 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 Integral symbol in HTML, CSS, and JS?

Insert ∫ Integral using HTML

1. Copy-paste Integral directly:
<span>∫</span>
2. HTML Decimal Code:
<span>&#8747;</span>
3. Hexadecimal Code:
<span>&#x222B;</span>
Preview:

Add Integral symbol with CSS

.integral::before {
    content: '\\222B';
}
Preview: Integral

Integral JavaScript Code

1. Direct Symbol:
document.querySelector('.integral').textContent = '∫';
2. Unicode Escape for ∫:
document.querySelector('.integral').textContent = '\u222B';
Preview: