| Symboolnaam | White Square |
| Unicode-versie | 1.1 |
| Unicode | U+25A1 |
| Unicode-blok | |
| Algemene categorie | Other Symbol (So) |
| CSS-code | \25A1 |
| Hexadecimale code | 0x25A1 |
| HTML-code | □ |
| LaTeX | \square |
| Symbool | □ |
| URL-codering (UTF-8 procent) | %E2%96%A1 |
| Uitgesproken naam / schermlezer | White Square |
| UTF-8 | E2 96 A1 |
| UTF-16 | 25A1 |
| UTF-32 | 000025A1 |
1\documentclass{article}2\usepackage{pifont}3\square 4\end{document}Je kunt het white square-symbool op de meeste moderne apparaten typen met de volgende methoden:
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>De weergave van het White Square-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| 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}" |