| Nome del simbolo | Volume Integral |
| Versione Unicode | 1.1 |
| Unicode | U+2230 |
| Blocco Unicode | |
| Categoria generale | Math Symbol (Sm) |
| Codice CSS | \2230 |
| Codice esadecimale | 0x2230 |
| Codice HTML | ∰ |
| LaTeX | \oiiint |
| Simbolo | ∰ |
| Codifica URL (percentuale UTF-8) | %E2%88%B0 |
| Nome parlato / screen reader | Volume Integral |
| UTF-8 | E2 88 B0 |
| UTF-16 | 2230 |
| UTF-32 | 00002230 |
1\documentclass{article}2\usepackage{pifont}3\oiiint4\end{document}Puoi digitare il simbolo volume integral sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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>La rappresentazione del simbolo Volume Integral nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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" |