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