| Nome del simbolo | White Circle |
| Versione Unicode | 1.1 |
| Unicode | U+25CB |
| Blocco Unicode | |
| Categoria generale | Other Symbol (So) |
| Codice CSS | \25CB |
| Codice esadecimale | 0x25CB |
| Codice HTML | ○ |
| LaTeX | \circ |
| Simbolo | ○ |
| Codifica URL (percentuale UTF-8) | %E2%97%8B |
| Nome parlato / screen reader | White Circle |
| UTF-8 | E2 97 8B |
| UTF-16 | 25CB |
| UTF-32 | 000025CB |
1\documentclass{article}2\usepackage{pifont}3\circ 4\end{document}Puoi digitare il simbolo white circle sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 9675 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "white circle", or use Unicode Hex Input with 25CB.
Ctrl + Shift + U, type 25cb, 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.white-circle::before { content: "\25CB"; }1<span>○</span>La rappresentazione del simbolo White Circle nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u25CB' or String.fromCodePoint(9675) |
| Python | '\N{WHITE CIRCLE}' or chr(9675) |
| Rust | '\u{25CB}' |
| C / C++ | UTF-8 source or wchar_t with U+25CB |
| Go | string(rune(0x25CB)) |
| Ruby | "\u{25CB}" |