| Nombre del símbolo | Black Lozenge |
| Versión Unicode | 3.2 |
| Unicode | U+29EB |
| Bloque Unicode | |
| Categoría general | Math Symbol (Sm) |
| Código CSS | \29EB |
| Código hexadecimal | 0x29EB |
| Código HTML | ⧫ |
| LaTeX | \text{BLACKLOZENGE} |
| Símbolo | ⧫ |
| Codificación URL (porcentaje UTF-8) | %E2%A7%AB |
| Nombre oral / lector de pantalla | 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}Puedes escribir el símbolo black lozenge en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Black Lozenge en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |