| Nome del simbolo | Circled Division Slash |
| Versione Unicode | 1.1 |
| Unicode | U+2298 |
| Blocco Unicode | |
| Categoria generale | Math Symbol (Sm) |
| Codice CSS | \2298 |
| Codice esadecimale | 0x2298 |
| Codice HTML | ⊘ |
| LaTeX | \text{CIRCLEDDIVISIONSLASH} |
| Simbolo | ⊘ |
| Codifica URL (percentuale UTF-8) | %E2%8A%98 |
| Nome parlato / screen reader | Circled Division Slash |
| UTF-8 | E2 8A 98 |
| UTF-16 | 2298 |
| UTF-32 | 00002298 |
1\documentclass{article}2\usepackage{pifont}3\text{CIRCLEDDIVISIONSLASH}4\end{document}Puoi digitare il simbolo circled division slash sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 8856 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "circled division slash", or use Unicode Hex Input with 2298.
Ctrl + Shift + U, type 2298, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with geometric symbol support.
1span.circled-division-slash::before { content: "\2298"; }1<span>⊘</span>La rappresentazione del simbolo Circled Division Slash nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u2298' or String.fromCodePoint(8856) |
| Python | '\N{CIRCLED DIVISION SLASH}' or chr(8856) |
| Rust | '\u{2298}' |
| C / C++ | UTF-8 source or wchar_t with U+2298 |
| Go | string(rune(0x2298)) |
| Ruby | "\u{2298}" |