| Nombre del símbolo | Ballot Box With X |
| Versión Unicode | 1.1 |
| Unicode | U+2612 |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \2612 |
| Código hexadecimal | 0x2612 |
| Código HTML | ☒ |
| LaTeX | \text{BALLOTBOXWITHX} |
| Símbolo | ☒ |
| Codificación URL (porcentaje UTF-8) | %E2%98%92 |
| Nombre oral / lector de pantalla | 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}Puedes escribir el símbolo ballot box with x en la mayoría de dispositivos modernos con los siguientes métodos:
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>La representación del símbolo Ballot Box With X en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |