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