Volume Integral

Shortcodes

Copy useful codes for volume integral symbol ∰ to use in websites, apps, blogs, and docs.

Unicode
U+2230
HTML Code
∰
HEX Code
∰
CSS Code
\2230
JS/JSON
\u2230
Unix/C/PHP/JAVA
0x2230
URL-encode
%E2%88%B0

Customize Volume Integral

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

  

How to use Volume Integral Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>∰</span>
HTML Code:
<span>&#8752;</span>
HEX Code:
<span>&#x2230;</span>

Add with CSS

.volume-integral::before {
  content: '\\2230';
}

Set it in JavaScript

document.querySelector('.volume-integral').textContent = '∰';
copied