What Is the Keyboard Shortcut for a Bullet Point

Discover whether there is a universal shortcut for bullets, how to insert bullet glyphs, and how to toggle bullet lists across common editors. Includes Markdown, Word, Google Docs, and accessibility tips, with practical code examples and app-agnostic guidance.

Shortcuts Lib
Shortcuts Lib Team
·1 min read
Quick AnswerDefinition

Is there a universal keyboard shortcut for a bullet point? Not really—bullet shortcuts vary by app. Most editors provide a list-toggle command (app-specific) or you can insert the glyph itself using platform shortcuts: Windows Alt+0149 for • and macOS Option+8. According to Shortcuts Lib, this variability is common across tools.

Understanding bullets and why shortcuts matter

A bullet point is more than a symbol; it organizes ideas, improves readability, and helps convey hierarchy in your notes, docs, and code comments. When you work across different tools, there isn’t a single universal keyboard shortcut for bullets. The keyword here is context: the same action—creating or toggling a bullet list—often lives behind different keyboard combinations, menus, or icons depending on the editor. For readers asking what is the keyboard shortcut for a bullet point, the answer is that you should learn the editor’s specific command while also knowing a reliable glyph-insertion method. In Markdown, bullets are simply lines that begin with a dash or asterisk, which you can craft manually or with a small script. The Shortcuts Lib approach is to teach both the app-oriented shortcut and the portable glyph approach so you can stay productive across environments.

MARKDOWN
- Item one - Item two - Item three

For plain Markdown documents, starting a line with a dash or asterisk creates a bullet list. This is portable across editors and platforms, which is why many power users rely on Markdown for quick bullets during note-taking or scripting.

Why this matters

  • It reduces friction when moving between apps.
  • It helps preserve consistent formatting in shared documents.
  • It supports accessibility by ensuring predictable list structure in HTML outputs.
  • It enables cross-platform workflows, a core focus at Shortcuts Lib.

Steps

Estimated time: 15-25 minutes

  1. 1

    Identify target editor

    Open the document in your editor of choice (Word, Google Docs, or a Markdown editor) to determine how bullets are managed in that environment.

    Tip: Check the Help or Keyboard Shortcuts panel of the editor to locate the exact command.
  2. 2

    Use app-specific shortcut or toggle

    If the editor provides a bullets toggle, use the documented shortcut or toolbar button to enable bulleted formatting for the current paragraph.

    Tip: If unsure, hover over the bullets icon to reveal the shortcut in some editors.
  3. 3

    Insert bullet glyph for plain text

    When formatting in plain text or non-list contexts, insert the bullet glyph (•) using platform shortcuts.

    Tip: Windows: Alt+0149; macOS: Option+8.
  4. 4

    Practice with Markdown

    Create a sample Markdown list to solidify the habit of starting lines with a dash or asterisk to form bullets.

    Tip: This helps you work offline and maintain portability.
  5. 5

    Verify accessibility and consistency

    Ensure that bullet lists render correctly in HTML and assistive technologies by using proper list semantics.

    Tip: Always test output in the target format (web, PDF, or print).
Pro Tip: Learn the editor’s shortcut legend to memorize common bullets quickly.
Warning: Avoid nonstandard glyphs that may render differently across fonts or devices.
Note: In Markdown, keep a consistent bullet style (dash vs asterisk) for readability.

Prerequisites

Required

  • A text editor or word processor (Word, Google Docs, or Markdown editor)
    Required
  • Basic knowledge of list formatting and keyboard shortcuts
    Required
  • Windows or macOS environment
    Required

Optional

  • Optional: knowledge of Unicode bullet glyphs
    Optional
  • Internet access for cloud editors
    Optional

Keyboard Shortcuts

ActionShortcut
Insert bullet glyph (single character)In many editors to insert a bullet symbol (•).Alt+0149
Toggle bulleted listApp-specific. Check the editor’s documentation or menu for 'Bullets' toggle.
Create Markdown bullet on a lineIn Markdown, prefix lines with '- ' or '* ' to form bullets.

Questions & Answers

Is there a universal keyboard shortcut for bullets?

No. Bullet shortcuts depend on the editor. Most tools offer a list toggle or menu command specific to the app. For portability, learn the Markdown approach and platform glyphs.

No universal shortcut; bullets depend on the editor you’re using.

How do I insert a bullet glyph on Windows?

You can insert the bullet character using Alt+0149, which yields • in many editors. This is useful in plain text or where list formatting isn’t available.

On Windows, press Alt+0149 to insert a bullet character.

How do I insert a bullet on macOS?

Use Option+8 to insert the bullet glyph • in most apps. This works well in plain text, notes, or editors that don’t provide a bullet list toggle.

On macOS, press Option+8 for a bullet.

Why do bullets vary across apps?

Different editors model text lists differently (rich text vs plain text vs Markdown). That’s why there isn’t a single universal shortcut for bullets across all tools.

Bullets vary because editors treat lists differently.

What about accessibility and bullet lists in HTML?

Use semantic HTML: <ul> for unordered lists and <li> for items. This ensures assistive technologies read lists correctly and consistently.

Use proper HTML list elements to keep lists accessible.

Main Points

  • There is no universal bullet shortcut across apps
  • Insert bullets via platform glyphs when needed (Windows Alt+0149; Mac Option+8)
  • Learn app-specific list toggles for faster formatting
  • Markdown bullets are portable and simple to type consistently

Related Articles