| Symboolnaam | Halfwidth Black Square |
| Unicode-versie | 1.1 |
| Unicode | U+FFED |
| Unicode-blok | |
| Algemene categorie | Other Symbol (So) |
| CSS-code | \FFED |
| Hexadecimale code | 0xFFED |
| HTML-code | ■ |
| LaTeX | \text{HALFWIDTHBLACKSQUARE} |
| Symbool | ■ |
| URL-codering (UTF-8 procent) | %EF%BF%AD |
| Uitgesproken naam / schermlezer | 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}Je kunt het halfwidth black square-symbool op de meeste moderne apparaten typen met de volgende methoden:
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>De weergave van het Halfwidth Black Square-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| 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}" |