| Nom du symbole | Black Circle |
| Version Unicode | 1.1 |
| Unicode | U+25CF |
| Bloc Unicode | |
| Catégorie générale | Other Symbol (So) |
| Code CSS | \25CF |
| Code hexadécimal | 0x25CF |
| Code HTML | ● |
| LaTeX | \bullet |
| Symbole | ● |
| Encodage URL (pourcent UTF-8) | %E2%97%8F |
| Nom oral / lecteur d’écran | Black Circle |
| UTF-8 | E2 97 8F |
| UTF-16 | 25CF |
| UTF-32 | 000025CF |
1\documentclass{article}2\usepackage{pifont}3\bullet 4\end{document}Vous pouvez saisir le symbole black circle sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 9679 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "black circle", or use Unicode Hex Input with 25CF.
Ctrl + Shift + U, type 25cf, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with geometric symbol support.
1span.black-circle::before { content: "\25CF"; }1<span>●</span>La représentation du symbole Black Circle dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u25CF' or String.fromCodePoint(9679) |
| Python | '\N{BLACK CIRCLE}' or chr(9679) |
| Rust | '\u{25CF}' |
| C / C++ | UTF-8 source or wchar_t with U+25CF |
| Go | string(rune(0x25CF)) |
| Ruby | "\u{25CF}" |