| Nome del simbolo | White Rectangle |
| Versione Unicode | 1.1 |
| Unicode | U+25AD |
| Blocco Unicode | |
| Categoria generale | Other Symbol (So) |
| Codice CSS | \25AD |
| Codice esadecimale | 0x25AD |
| Codice HTML | ▭ |
| LaTeX | \text{WHITERECTANGLE} |
| Simbolo | ▭ |
| Codifica URL (percentuale UTF-8) | %E2%96%AD |
| Nome parlato / screen reader | 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}Puoi digitare il simbolo white rectangle sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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 rappresentazione del simbolo White Rectangle nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |