| Nom du symbole | Black Diamond |
| Version Unicode | 1.1 |
| Unicode | U+25C6 |
| Bloc Unicode | |
| Catégorie générale | Other Symbol (So) |
| Code CSS | \25C6 |
| Code hexadécimal | 0x25C6 |
| Code HTML | ◆ |
| LaTeX | \text{BLACKDIAMOND} |
| Symbole | ◆ |
| Encodage URL (pourcent UTF-8) | %E2%97%86 |
| Nom oral / lecteur d’écran | 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}Vous pouvez saisir le symbole black diamond sur la plupart des appareils modernes avec les méthodes suivantes :
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>La représentation du symbole Black Diamond dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| 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}" |