| Nombre del símbolo | Full Block |
| Versión Unicode | 1.1 |
| Unicode | U+2588 |
| Bloque Unicode | |
| Categoría general | Other Symbol (So) |
| Código CSS | \2588 |
| Código hexadecimal | 0x2588 |
| Código HTML | █ |
| LaTeX | \text{FULLBLOCK} |
| Símbolo | █ |
| Codificación URL (porcentaje UTF-8) | %E2%96%88 |
| Nombre oral / lector de pantalla | Full Block |
| UTF-8 | E2 96 88 |
| UTF-16 | 2588 |
| UTF-32 | 00002588 |
1\documentclass{article}2\usepackage{pifont}3\text{FULLBLOCK}4\end{document}Puedes escribir el símbolo full block en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 9608 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "full block", or use Unicode Hex Input with 2588.
Ctrl + Shift + U, type 2588, 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.full-block::before { content: "\2588"; }1<span>█</span>La representación del símbolo Full Block en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u2588' or String.fromCodePoint(9608) |
| Python | '\N{FULL BLOCK}' or chr(9608) |
| Rust | '\u{2588}' |
| C / C++ | UTF-8 source or wchar_t with U+2588 |
| Go | string(rune(0x2588)) |
| Ruby | "\u{2588}" |