| Nom du symbole | White Square |
| Version Unicode | 1.1 |
| Unicode | U+25A1 |
| Bloc Unicode | |
| Catégorie générale | Other Symbol (So) |
| Code CSS | \25A1 |
| Code hexadécimal | 0x25A1 |
| Code HTML | □ |
| LaTeX | \square |
| Symbole | □ |
| Encodage URL (pourcent UTF-8) | %E2%96%A1 |
| Nom oral / lecteur d’écran | White Square |
| UTF-8 | E2 96 A1 |
| UTF-16 | 25A1 |
| UTF-32 | 000025A1 |
1\documentclass{article}2\usepackage{pifont}3\square 4\end{document}Vous pouvez saisir le symbole white square sur la plupart des appareils modernes avec les méthodes suivantes :
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>La représentation du symbole White Square dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |