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