| 記号名 | Surface Integral |
| Unicodeバージョン | 1.1 |
| Unicode | U+222F |
| Unicodeブロック | |
| 一般カテゴリ | Math Symbol (Sm) |
| CSSコード | \222F |
| 16進コード | 0x222F |
| HTMLコード | ∯ |
| LaTeX | \oiint |
| 記号 | ∯ |
| URLエンコード(UTF-8パーセント) | %E2%88%AF |
| 読み上げ名 / スクリーンリーダー | Surface Integral |
| UTF-8 | E2 88 AF |
| UTF-16 | 222F |
| UTF-32 | 0000222F |
1\documentclass{article}2\usepackage{pifont}3\oiint4\end{document}以下の方法でほとんどの最新デバイスでsurface integral記号を入力できます:
Alt + 8751 on the numeric keypad, or insert via Character Map.
Edit → Emoji & Symbols, search "surface integral", or use Unicode Hex Input.
Ctrl + Shift + U, type 222f, then Enter (layout-dependent).
Paste from this page or use a math keyboard.
Paste from this page or use extended math symbol panels.
1span.surface-integral::before { content: "\222F"; }1<span>∯</span>各プログラミング言語におけるSurface Integral記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u222F' or String.fromCodePoint(0x222F) |
| Python | '\N{SURFACE INTEGRAL}' or chr(8751) |
| Rust | '\u{222F}' |
| C / C++ | UTF-8 source or wchar_t with U+222F |
| Go | string(rune(0x222F)) |
| Ruby | "\u222F" |