| Nome del simbolo | White Vertical Rectangle |
| Versione Unicode | 1.1 |
| Unicode | U+25AF |
| Blocco Unicode | |
| Categoria generale | Other Symbol (So) |
| Codice CSS | \25AF |
| Codice esadecimale | 0x25AF |
| Codice HTML | ▯ |
| LaTeX | \text{WHITEVERTICALRECTANGLE} |
| Simbolo | ▯ |
| Codifica URL (percentuale UTF-8) | %E2%96%AF |
| Nome parlato / screen reader | White Vertical Rectangle |
| UTF-8 | E2 96 AF |
| UTF-16 | 25AF |
| UTF-32 | 000025AF |
1\documentclass{article}2\usepackage{pifont}3\text{WHITEVERTICALRECTANGLE}4\end{document}Puoi digitare il simbolo white vertical rectangle sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 9647 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "white vertical rectangle", or use Unicode Hex Input with 25AF.
Ctrl + Shift + U, type 25af, 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-vertical-rectangle::before { content: "\25AF"; }1<span>▯</span>La rappresentazione del simbolo White Vertical Rectangle nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u25AF' or String.fromCodePoint(9647) |
| Python | '\N{WHITE VERTICAL RECTANGLE}' or chr(9647) |
| Rust | '\u{25AF}' |
| C / C++ | UTF-8 source or wchar_t with U+25AF |
| Go | string(rune(0x25AF)) |
| Ruby | "\u{25AF}" |