| Symbol Name | Volume Integral |
| Unicode Version | 1.1 |
| Unicode | U+2230 |
| Unicode block | |
| General category | Math Symbol (Sm) |
| CSS Code | \2230 |
| Hex Code | 0x2230 |
| HTML Code | ∰ |
| LaTeX | \oiiint |
| Symbol | ∰ |
| URL encode (UTF-8 percent) | %E2%88%B0 |
| Spoken / screen reader name | Volume Integral |
| UTF-8 | E2 88 B0 |
| UTF-16 | 2230 |
| UTF-32 | 00002230 |
1\documentclass{article}2\usepackage{pifont}3\oiiint4\end{document}You can type the volume integral symbol on most modern devices with the help of following methods:
Alt + 8752 on the numeric keypad, or insert via Character Map.
Edit → Emoji & Symbols, search "volume integral", or use Unicode Hex Input.
Ctrl + Shift + U, type 2230, then Enter (layout-dependent).
Paste from this page or use a math keyboard.
Paste from this page or use extended math symbol panels.
1span.volume-integral::before { content: "\2230"; }1<span>∰</span>Volume Integral symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u2230' or String.fromCodePoint(0x2230) |
| Python | '\N{VOLUME INTEGRAL}' or chr(8752) |
| Rust | '\u{2230}' |
| C / C++ | UTF-8 source or wchar_t with U+2230 |
| Go | string(rune(0x2230)) |
| Ruby | "\u2230" |