| Nom du symbole | White Rectangle |
| Version Unicode | 1.1 |
| Unicode | U+25AD |
| Bloc Unicode | |
| Catégorie générale | Other Symbol (So) |
| Code CSS | \25AD |
| Code hexadécimal | 0x25AD |
| Code HTML | ▭ |
| LaTeX | \text{WHITERECTANGLE} |
| Symbole | ▭ |
| Encodage URL (pourcent UTF-8) | %E2%96%AD |
| Nom oral / lecteur d’écran | White Rectangle |
| UTF-8 | E2 96 AD |
| UTF-16 | 25AD |
| UTF-32 | 000025AD |
1\documentclass{article}2\usepackage{pifont}3\text{WHITERECTANGLE}4\end{document}Vous pouvez saisir le symbole white rectangle sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 9645 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "white rectangle", or use Unicode Hex Input with 25AD.
Ctrl + Shift + U, type 25ad, 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-rectangle::before { content: "\25AD"; }1<span>▭</span>La représentation du symbole White Rectangle dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u25AD' or String.fromCodePoint(9645) |
| Python | '\N{WHITE RECTANGLE}' or chr(9645) |
| Rust | '\u{25AD}' |
| C / C++ | UTF-8 source or wchar_t with U+25AD |
| Go | string(rune(0x25AD)) |
| Ruby | "\u{25AD}" |