| Nome del simbolo | Black Lozenge |
| Versione Unicode | 3.2 |
| Unicode | U+29EB |
| Blocco Unicode | |
| Categoria generale | Math Symbol (Sm) |
| Codice CSS | \29EB |
| Codice esadecimale | 0x29EB |
| Codice HTML | ⧫ |
| LaTeX | \text{BLACKLOZENGE} |
| Simbolo | ⧫ |
| Codifica URL (percentuale UTF-8) | %E2%A7%AB |
| Nome parlato / screen reader | 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}Puoi digitare il simbolo black lozenge sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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>La rappresentazione del simbolo Black Lozenge nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |