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