| Nom du symbole | Circled White Bullet |
| Version Unicode | 3.2 |
| Unicode | U+29BE |
| Bloc Unicode | |
| Catégorie générale | Math Symbol (Sm) |
| Code CSS | \29BE |
| Code hexadécimal | 0x29BE |
| Code HTML | ⦾ |
| LaTeX | \text{CIRCLEDWHITEBULLET} |
| Symbole | ⦾ |
| Encodage URL (pourcent UTF-8) | %E2%A6%BE |
| Nom oral / lecteur d’écran | Circled White Bullet |
| UTF-8 | E2 A6 BE |
| UTF-16 | 29BE |
| UTF-32 | 000029BE |
1\documentclass{article}2\usepackage{pifont}3\text{CIRCLEDWHITEBULLET}4\end{document}Vous pouvez saisir le symbole circled white bullet sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 10686 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "circled white bullet", or use Unicode Hex Input with 29BE.
Ctrl + Shift + U, type 29be, 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.circled-white-bullet::before { content: "\29BE"; }1<span>⦾</span>La représentation du symbole Circled White Bullet dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u29BE' or String.fromCodePoint(10686) |
| Python | '\N{CIRCLED WHITE BULLET}' or chr(10686) |
| Rust | '\u{29BE}' |
| C / C++ | UTF-8 source or wchar_t with U+29BE |
| Go | string(rune(0x29BE)) |
| Ruby | "\u{29BE}" |