| Nombre del símbolo | Left Half Block |
| Versión Unicode | 1.1 |
| Unicode | U+258C |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \258C |
| Código hexadecimal | 0x258C |
| Código HTML | ▌ |
| LaTeX | \text{LEFTHALFBLOCK} |
| Símbolo | ▌ |
| Codificación URL (porcentaje UTF-8) | %E2%96%8C |
| Nombre oral / lector de pantalla | 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}Puedes escribir el símbolo left half block en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Left Half Block en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |