| Symbol Name | Bullet |
| Unicode Version | 1.1 |
| Unicode | U+2022 |
| Unicode block | |
| General category | Other Punctuation (Po) |
| CSS Code | \2022 |
| Hex Code | 0x2022 |
| HTML Code | • |
| LaTeX | \text{BULLET} |
| Symbol | • |
| URL encode (UTF-8 percent) | %E2%80%A2 |
| Spoken / screen reader name | Bullet |
| UTF-8 | E2 80 A2 |
| UTF-16 | 2022 |
| UTF-32 | 00002022 |
1\documentclass{article}2\usepackage{pifont}3\text{BULLET}4\end{document}You can type the bullet symbol on most modern devices with the help of following methods:
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>Bullet symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| 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}" |