| Symboolnaam | Black Lozenge |
| Unicode-versie | 3.2 |
| Unicode | U+29EB |
| Unicode-blok | |
| Algemene categorie | Math Symbol (Sm) |
| CSS-code | \29EB |
| Hexadecimale code | 0x29EB |
| HTML-code | ⧫ |
| LaTeX | \text{BLACKLOZENGE} |
| Symbool | ⧫ |
| URL-codering (UTF-8 procent) | %E2%A7%AB |
| Uitgesproken naam / schermlezer | Black Lozenge |
| UTF-8 | E2 A7 AB |
| UTF-16 | 29EB |
| UTF-32 | 000029EB |
1\documentclass{article}2\usepackage{pifont}3\text{BLACKLOZENGE}4\end{document}Je kunt het black lozenge-symbool op de meeste moderne apparaten typen met de volgende methoden:
Alt + 10731 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "black lozenge", or use Unicode Hex Input with 29EB.
Ctrl + Shift + U, type 29eb, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the emoji keyboard.
Paste from this page or use a keyboard with list marker support.
1span.black-lozenge::before { content: "\29EB"; }1<span>⧫</span>De weergave van het Black Lozenge-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| JavaScript / TypeScript | '\u29EB' or String.fromCodePoint(10731) |
| Python | '\N{BLACK LOZENGE}' or chr(10731) |
| Rust | '\u{29EB}' |
| C / C++ | UTF-8 source or wchar_t with U+29EB |
| Go | string(rune(0x29EB)) |
| Ruby | "\u{29EB}" |