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