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