| Symbol Name | Black Lozenge |
| Unicode Version | 3.2 |
| Unicode | U+29EB |
| Unicode block | |
| General category | Math Symbol (Sm) |
| CSS Code | \29EB |
| Hex Code | 0x29EB |
| HTML Code | ⧫ |
| LaTeX | \text{BLACKLOZENGE} |
| Symbol | ⧫ |
| URL encode (UTF-8 percent) | %E2%A7%AB |
| Spoken / screen reader name | 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}You can type the black lozenge symbol on most modern devices with the help of following methods:
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>Black Lozenge symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |