| 記号名 | Volume Integral |
| Unicodeバージョン | 1.1 |
| Unicode | U+2230 |
| Unicodeブロック | |
| 一般カテゴリ | Math Symbol (Sm) |
| CSSコード | \2230 |
| 16進コード | 0x2230 |
| HTMLコード | ∰ |
| LaTeX | \oiiint |
| 記号 | ∰ |
| URLエンコード(UTF-8パーセント) | %E2%88%B0 |
| 読み上げ名 / スクリーンリーダー | Volume Integral |
| UTF-8 | E2 88 B0 |
| UTF-16 | 2230 |
| UTF-32 | 00002230 |
1\documentclass{article}2\usepackage{pifont}3\oiiint4\end{document}以下の方法でほとんどの最新デバイスでvolume integral記号を入力できます:
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記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| 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" |