| Nome del simbolo | Ring Operator |
| Versione Unicode | 1.1 |
| Unicode | U+2218 |
| Blocco Unicode | |
| Categoria generale | Math Symbol (Sm) |
| Codice CSS | \2218 |
| Codice esadecimale | 0x2218 |
| Codice HTML | ∘ |
| LaTeX | \circ |
| Simbolo | ∘ |
| Codifica URL (percentuale UTF-8) | %E2%88%98 |
| Nome parlato / screen reader | Ring Operator |
| UTF-8 | E2 88 98 |
| UTF-16 | 2218 |
| UTF-32 | 00002218 |
1\documentclass{article}2\usepackage{pifont}3\circ4\end{document}Puoi digitare il simbolo ring operator sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 8728 on the numeric keypad, or insert via Character Map.
Edit → Emoji & Symbols, search "ring operator", or use Unicode Hex Input.
Ctrl + Shift + U, type 2218, then Enter (layout-dependent).
Paste from this page or use a math keyboard.
Paste from this page or use extended symbol panels.
1span.circ::before { content: "\2218"; }1<span>∘</span>La rappresentazione del simbolo Ring Operator nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u2218' or String.fromCodePoint(0x2218) |
| Python | '\N{RING OPERATOR}' or chr(8728) |
| Rust | '\u{2218}' |
| C / C++ | UTF-8 source or wchar_t with U+2218 |
| Go | string(rune(0x2218)) |
| Ruby | "\u2218" |