| Symbol Name | Ballot Box With X |
| Unicode Version | 1.1 |
| Unicode | U+2612 |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \2612 |
| Hex Code | 0x2612 |
| HTML Code | ☒ |
| LaTeX | \text{BALLOTBOXWITHX} |
| Symbol | ☒ |
| URL encode (UTF-8 percent) | %E2%98%92 |
| Spoken / screen reader name | Ballot Box With X |
| UTF-8 | E2 98 92 |
| UTF-16 | 2612 |
| UTF-32 | 00002612 |
1\documentclass{article}2\usepackage{pifont}3\text{BALLOTBOXWITHX}4\end{document}You can type the ballot box with x symbol on most modern devices with the help of following methods:
Alt + 9746 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "ballot box with x", or use Unicode Hex Input with 2612.
Ctrl + Shift + U, type 2612, 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 cross mark support.
1span.ballot-box-with-x::before { content: "\2612"; }1<span>☒</span>Ballot Box With X symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u2612' or String.fromCodePoint(9746) |
| Python | '\N{BALLOT BOX WITH X}' or chr(9746) |
| Rust | '\u{2612}' |
| C / C++ | UTF-8 source or wchar_t with U+2612 |
| Go | string(rune(0x2612)) |
| Ruby | "\u{2612}" |