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