| Nom du symbole | Dotted Circle |
| Version Unicode | 1.1 |
| Unicode | U+25CC |
| Bloc Unicode | |
| Catégorie générale | Other Symbol (So) |
| Code CSS | \25CC |
| Code hexadécimal | 0x25CC |
| Code HTML | ◌ |
| LaTeX | \text{DOTTEDCIRCLE} |
| Symbole | ◌ |
| Encodage URL (pourcent UTF-8) | %E2%97%8C |
| Nom oral / lecteur d’écran | Dotted Circle |
| UTF-8 | E2 97 8C |
| UTF-16 | 25CC |
| UTF-32 | 000025CC |
1\documentclass{article}2\usepackage{pifont}3\text{DOTTEDCIRCLE}4\end{document}Vous pouvez saisir le symbole dotted circle sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 9676 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "dotted circle", or use Unicode Hex Input with 25CC.
Ctrl + Shift + U, type 25cc, 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.dotted-circle::before { content: "\25CC"; }1<span>◌</span>La représentation du symbole Dotted Circle dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u25CC' or String.fromCodePoint(9676) |
| Python | '\N{DOTTED CIRCLE}' or chr(9676) |
| Rust | '\u{25CC}' |
| C / C++ | UTF-8 source or wchar_t with U+25CC |
| Go | string(rune(0x25CC)) |
| Ruby | "\u{25CC}" |