BrowseASCII ArtSymbolsASCII TableLearnToolsImage to ASCIIASCII CameraGIF to ASCIIVideo to ASCIIDot ArtEmoji Art

Bullet Point Symbols to Copy & Paste

The classic bullet • is a Unicode character (U+2022), not ASCII. In plain-text contexts people have always faked bullets with a hyphen (-), asterisk (*), or plus (+), and those are still the right choice for Markdown and code comments. When you need a real round bullet for a document, social bio, or list where Markdown is not available, copy one below.

Bullet
U+2022 · •
White bullet
U+25E6 · ◦
Black small square
U+25AA · ▪
White small square
U+25AB · ▫
Triangular bullet
U+2023 · ‣
Hyphen bullet
U+2043 · ⁃
Bullet operator
U+2219 · ∙
·
Middle dot
U+00B7 · ·
Black circle
U+25CF · ●
White circle
U+25CB · ○
Black diamond
U+25C6 · ◆
*
Asterisk (ASCII bullet)
U+002A · *
-
Hyphen-minus (ASCII bullet)
U+002D · -

How to type a bullet point on Windows and Mac

On Windows, hold Alt and type 0149 on the numeric keypad to insert •. The shorter Alt+7 also produces a bullet in many applications. Character Map (search "bullet") lists all of the variants above. On a Mac, press Option+8 to type • directly. For the middle dot ·, use Option+Shift+9. On mobile, the bullet usually appears when you long-press the hyphen or period key on the symbols keyboard.

Bullets in HTML, Markdown, and code

In HTML you rarely need the character itself — a <ul> list draws its own bullets. When you do want a literal one inline, use &bull; or &#8226; to render •. The middle dot is &middot; (·), handy as a separator between links. In Markdown, start a line with -, *, or + to create a bulleted list; the renderer converts it to a •. Do not paste a literal • at the start of a Markdown line, as it will be treated as ordinary text rather than a list item.

Related

FAQ

What is the Alt code for a bullet point?
On Windows, Alt+0149 on the numeric keypad produces •. The shorter Alt+7 works in many programs too. On Mac, press Option+8.
Is the bullet symbol ASCII?
No. The round bullet • is Unicode U+2022. The ASCII stand-ins are the hyphen (-), asterisk (*), and plus (+), which is why Markdown uses those to start list items.
What is the difference between • and ·?
• (U+2022) is a full-size bullet used to start list items. · (U+00B7) is the smaller middle dot, typically used as an inline separator between words or links.