| Nome del simbolo | Dark Shade |
| Versione Unicode | 1.1 |
| Unicode | U+2593 |
| Blocco Unicode | |
| Categoria generale | Other Symbol (So) |
| Codice CSS | \2593 |
| Codice esadecimale | 0x2593 |
| Codice HTML | ▓ |
| LaTeX | \text{DARKSHADE} |
| Simbolo | ▓ |
| Codifica URL (percentuale UTF-8) | %E2%96%93 |
| Nome parlato / screen reader | 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}Puoi digitare il simbolo dark shade sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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 rappresentazione del simbolo Dark Shade nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |