| Nombre del símbolo | White Square |
| Versión Unicode | 1.1 |
| Unicode | U+25A1 |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \25A1 |
| Código hexadecimal | 0x25A1 |
| Código HTML | □ |
| LaTeX | \square |
| Símbolo | □ |
| Codificación URL (porcentaje UTF-8) | %E2%96%A1 |
| Nombre oral / lector de pantalla | White Square |
| UTF-8 | E2 96 A1 |
| UTF-16 | 25A1 |
| UTF-32 | 000025A1 |
1\documentclass{article}2\usepackage{pifont}3\square 4\end{document}Puedes escribir el símbolo white square en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 9633 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "white square", or use Unicode Hex Input with 25A1.
Ctrl + Shift + U, type 25a1, 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-square::before { content: "\25A1"; }1<span>□</span>La representación del símbolo White Square en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u25A1' or String.fromCodePoint(9633) |
| Python | '\N{WHITE SQUARE}' or chr(9633) |
| Rust | '\u{25A1}' |
| C / C++ | UTF-8 source or wchar_t with U+25A1 |
| Go | string(rune(0x25A1)) |
| Ruby | "\u{25A1}" |