| Symbol Name | Surface Integral |
| Unicode Version | 1.1 |
| Unicode | U+222F |
| Unicode block | |
| General category | Math Symbol (Sm) |
| CSS Code | \222F |
| Hex Code | 0x222F |
| HTML Code | ∯ |
| LaTeX | \oiint |
| Symbol | ∯ |
| URL encode (UTF-8 percent) | %E2%88%AF |
| Spoken / screen reader name | Surface Integral |
| UTF-8 | E2 88 AF |
| UTF-16 | 222F |
| UTF-32 | 0000222F |
1\documentclass{article}2\usepackage{pifont}3\oiint4\end{document}You can type the surface integral symbol on most modern devices with the help of following methods:
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 symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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" |