| 記号名 | White Square |
| Unicodeバージョン | 1.1 |
| Unicode | U+25A1 |
| Unicodeブロック | |
| 一般カテゴリ | Other Symbol (So) |
| CSSコード | \25A1 |
| 16進コード | 0x25A1 |
| HTMLコード | □ |
| LaTeX | \square |
| 記号 | □ |
| URLエンコード(UTF-8パーセント) | %E2%96%A1 |
| 読み上げ名 / スクリーンリーダー | White Square |
| UTF-8 | E2 96 A1 |
| UTF-16 | 25A1 |
| UTF-32 | 000025A1 |
1\documentclass{article}2\usepackage{pifont}3\square 4\end{document}以下の方法でほとんどの最新デバイスでwhite square記号を入力できます:
Alt + 9633 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "white square", or use Unicode Hex Input with 25A1.
Ctrl + Shift + U, type 25a1, 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-square::before { content: "\25A1"; }1<span>□</span>各プログラミング言語におけるWhite Square記号の表現は以下の表の通りです:
| 言語 | 表現 |
|---|---|
| JavaScript / TypeScript | '\u25A1' or String.fromCodePoint(9633) |
| Python | '\N{WHITE SQUARE}' or chr(9633) |
| Rust | '\u{25A1}' |
| C / C++ | UTF-8 source or wchar_t with U+25A1 |
| Go | string(rune(0x25A1)) |
| Ruby | "\u{25A1}" |