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