| Nom du symbole | Volume Integral |
| Version Unicode | 1.1 |
| Unicode | U+2230 |
| Bloc Unicode | |
| Catégorie générale | Math Symbol (Sm) |
| Code CSS | \2230 |
| Code hexadécimal | 0x2230 |
| Code HTML | ∰ |
| LaTeX | \oiiint |
| Symbole | ∰ |
| Encodage URL (pourcent UTF-8) | %E2%88%B0 |
| Nom oral / lecteur d’écran | Volume Integral |
| UTF-8 | E2 88 B0 |
| UTF-16 | 2230 |
| UTF-32 | 00002230 |
1\documentclass{article}2\usepackage{pifont}3\oiiint4\end{document}Vous pouvez saisir le symbole volume integral sur la plupart des appareils modernes avec les méthodes suivantes :
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 représentation du symbole Volume Integral dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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" |