| Symboolnaam | Bullet |
| Unicode-versie | 1.1 |
| Unicode | U+2022 |
| Unicode-blok | |
| Algemene categorie | Other Punctuation (Po) |
| CSS-code | \2022 |
| Hexadecimale code | 0x2022 |
| HTML-code | • |
| LaTeX | \text{BULLET} |
| Symbool | • |
| URL-codering (UTF-8 procent) | %E2%80%A2 |
| Uitgesproken naam / schermlezer | Bullet |
| UTF-8 | E2 80 A2 |
| UTF-16 | 2022 |
| UTF-32 | 00002022 |
1\documentclass{article}2\usepackage{pifont}3\text{BULLET}4\end{document}Je kunt het bullet-symbool op de meeste moderne apparaten typen met de volgende methoden:
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>De weergave van het Bullet-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| 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}" |