| Symbol Name | Black Diamond |
| Unicode Version | 1.1 |
| Unicode | U+25C6 |
| Unicode block | |
| General category | Other Symbol (So) |
| CSS Code | \25C6 |
| Hex Code | 0x25C6 |
| HTML Code | ◆ |
| LaTeX | \text{BLACKDIAMOND} |
| Symbol | ◆ |
| URL encode (UTF-8 percent) | %E2%97%86 |
| Spoken / screen reader name | Black Diamond |
| UTF-8 | E2 97 86 |
| UTF-16 | 25C6 |
| UTF-32 | 000025C6 |
1\documentclass{article}2\usepackage{pifont}3\text{BLACKDIAMOND}4\end{document}You can type the black diamond symbol on most modern devices with the help of following methods:
Alt + 9670 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "black diamond", or use Unicode Hex Input with 25C6.
Ctrl + Shift + U, type 25c6, 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-diamond::before { content: "\25C6"; }1<span>◆</span>Black Diamond symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u25C6' or String.fromCodePoint(9670) |
| Python | '\N{BLACK DIAMOND}' or chr(9670) |
| Rust | '\u{25C6}' |
| C / C++ | UTF-8 source or wchar_t with U+25C6 |
| Go | string(rune(0x25C6)) |
| Ruby | "\u{25C6}" |