| 記号名 | White Vertical Rectangle |
| Unicodeバージョン | 1.1 |
| Unicode | U+25AF |
| Unicodeブロック | |
| 一般カテゴリ | Other Symbol (So) |
| CSSコード | \25AF |
| 16進コード | 0x25AF |
| HTMLコード | ▯ |
| LaTeX | \text{WHITEVERTICALRECTANGLE} |
| 記号 | ▯ |
| URLエンコード(UTF-8パーセント) | %E2%96%AF |
| 読み上げ名 / スクリーンリーダー | 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}以下の方法でほとんどの最新デバイスでwhite vertical rectangle記号を入力できます:
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記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| 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}" |