| Nome del simbolo | Ballot Box |
| Versione Unicode | 1.1 |
| Unicode | U+2610 |
| Blocco Unicode | |
| Categoria generale | Other Symbol (So) |
| Codice CSS | \2610 |
| Codice esadecimale | 0x2610 |
| Codice HTML | ☐ |
| LaTeX | \text{BALLOTBOX} |
| Simbolo | ☐ |
| Codifica URL (percentuale UTF-8) | %E2%98%90 |
| Nome parlato / screen reader | Ballot Box |
| UTF-8 | E2 98 90 |
| UTF-16 | 2610 |
| UTF-32 | 00002610 |
1\documentclass{article}2\usepackage{pifont}3\text{BALLOTBOX}4\end{document}Puoi digitare il simbolo ballot box sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 9744 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "ballot box", or use Unicode Hex Input with 2610.
Ctrl + Shift + U, type 2610, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the emoji keyboard.
Paste from this page or use a keyboard with check mark support.
1span.ballot-box::before { content: "\2610"; }1<span>☐</span>La rappresentazione del simbolo Ballot Box nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u2610' or String.fromCodePoint(9744) |
| Python | '\N{BALLOT BOX}' or chr(9744) |
| Rust | '\u{2610}' |
| C / C++ | UTF-8 source or wchar_t with U+2610 |
| Go | string(rune(0x2610)) |
| Ruby | "\u{2610}" |