Bullet point symbols.
Round, square, triangle and diamond bullets plus pointers — tap any to copy.
Bullets
Squares & diamonds
Pointers & stars
Bullets that paste anywhere
When you need a bulleted list somewhere that doesn't have list formatting — a social bio, a plain-text note, a form field, a chat message — a bullet character does the job. Tap one and paste it before each line. The round bullet (•) is the universal default; squares (▪ ■), diamonds (◆ ❖) and triangles (▶ ►) give a list a bit of style or signal a sub-level. They're real characters, so they survive copy-paste between apps and scale with the surrounding text. To start each line cleanly, put the bullet, then a space, then your text.
How to type a bullet point
- Windows: hold Alt and type on the numeric keypad — 0149 for •, 0183 for ·, 0187 for ».
- macOS: Option + 8 gives •, Option + Shift + 9 gives ·, and Option + Shift + \ gives » on the US layout.
- Word and Outlook: type 2022 and press Alt + X for •; 25E6 gives ◦ and 2023 gives ‣.
- Windows, any character: Win + . opens the emoji panel; the symbols tab has the bullets.
- Linux: Ctrl + Shift + U, then 2022, then Enter.
- HTML and CSS: • is
•or•, · is·, ⁃ is⁃, » is», and ‣ is numeric only,‣. In CSS usecontent: "\2022". See the HTML entities page for more.
Bullet, middle dot and the ones to avoid
Three characters get mixed up constantly, and they are not interchangeable:
- • U+2022 BULLET — designed as a list marker, sized and positioned to sit beside a line of text. This is the one you want for a list.
- · U+00B7 MIDDLE DOT — much smaller, and a separator rather than a marker. It belongs between items on one line: breadcrumbs, bylines, tag lists.
- ∙ U+2219 BULLET OPERATOR — a mathematical operator meaning multiplication or a dot product. It is spaced like an operator and may be picked up by equation renderers, so keep it out of lists.
For nesting, word processors follow a convention worth copying: • at the first level, ◦ (U+25E6, white bullet) at the second, ▪ (U+25AA, black small square) at the third. ‣ (U+2023, triangular bullet) and ⁃ (U+2043, hyphen bullet) are alternatives with a stronger direction or a flatter, dash-like feel. » is really a French quotation mark borrowed as a marker — fine decoratively, but it will be announced as a quote by some screen readers.
On the web, use real list markup
Typed bullets are exactly right for a social bio, a chat message or any plain-text field with no formatting. In HTML they are the wrong tool. Use <ul> and <li>: you get the marker for free, wrapped lines indent under the text instead of sliding back to the margin, and a screen reader announces "list, four items" so the structure is conveyed. Typed bullets give you none of that — some screen readers read "bullet" before every line, others drop it silently.
If you want a different marker, style it rather than type it: list-style-type, or the ::marker pseudo-element with content: "‣ ". In Markdown, starting a line with -, * or + produces a real list too.