| Nome del simbolo | Halfwidth Black Square |
| Versione Unicode | 1.1 |
| Unicode | U+FFED |
| Blocco Unicode | |
| Categoria generale | Other Symbol (So) |
| Codice CSS | \FFED |
| Codice esadecimale | 0xFFED |
| Codice HTML | ■ |
| LaTeX | \text{HALFWIDTHBLACKSQUARE} |
| Simbolo | ■ |
| Codifica URL (percentuale UTF-8) | %EF%BF%AD |
| Nome parlato / screen reader | Halfwidth Black Square |
| UTF-8 | EF BF AD |
| UTF-16 | FFED |
| UTF-32 | 0000FFED |
1\documentclass{article}2\usepackage{pifont}3\text{HALFWIDTHBLACKSQUARE}4\end{document}Puoi digitare il simbolo halfwidth black square sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 65517 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "halfwidth black square", or use Unicode Hex Input with FFED.
Ctrl + Shift + U, type ffed, 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 geometric symbol support.
1span.halfwidth-black-square::before { content: "\FFED"; }1<span>■</span>La rappresentazione del simbolo Halfwidth Black Square nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\uFFED' or String.fromCodePoint(65517) |
| Python | '\N{HALFWIDTH BLACK SQUARE}' or chr(65517) |
| Rust | '\u{FFED}' |
| C / C++ | UTF-8 source or wchar_t with U+FFED |
| Go | string(rune(0xFFED)) |
| Ruby | "\u{FFED}" |