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