| Symbol Name | White Vertical Rectangle |
| Unicode Version | 1.1 |
| Unicode | U+25AF |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \25AF |
| Hex Code | 0x25AF |
| HTML Code | ▯ |
| LaTeX | \text{WHITEVERTICALRECTANGLE} |
| Symbol | ▯ |
| URL encode (UTF-8 percent) | %E2%96%AF |
| Spoken / screen reader name | 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}You can type the white vertical rectangle symbol on most modern devices with the help of following methods:
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>White Vertical Rectangle symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |