QUICK REFERENCE MATRIX

Master Bullet Point (•) Keyboard Shortcut Matrix (All Operating Systems)

A bullet point (), also referred to as a bullet dot, bullet character, or bullet symbol, is a typographical symbol used to introduce items in an unordered list. Below is your complete cross-platform keyboard shortcut cheat sheet:

Platform / Program Primary Keyboard Shortcut Secondary Shortcut / Method Auto-Format Trigger Unicode / HTML Entity
Windows OS Alt + 7 (Numpad) Alt + 0149 Win + . → Symbols (Ω) U+2022 | •
Apple Mac (macOS) Option + 8 Opt + Shift + 9 (Circle ) Ctrl + Cmd + Space U+2022 | •
Microsoft Word Ctrl + Shift + L Type 2022 then Alt + X Type * + Space or - + Space U+2022 | AutoBullet
Microsoft Excel Alt + 7 inside cell Formula: =UNICHAR(8226) & " " & A1 Formula: =CHAR(149) & " " & A1 U+2022 | ANSI 149
Google Docs Ctrl + Shift + 8 Insert → Special characters → Bullet Type * + Space U+2022 | List Toggle
Linux (Ubuntu/Debian) Shift + Ctrl + u then 2022 Compose Key + . + = Applications Palette U+2022 | Compose
iOS (iPhone & iPad) Tap 123#+= → tap Press & hold hyphen (-) Auto-list bullet in Notes Unicode Standard
Android (Gboard) Tap ?123=\< → tap Press & hold dot or hyphen key Auto-list bullet in Keep Unicode Standard
WINDOWS OPERATING SYSTEM

How to Type a Bullet Point on Windows (4 Fast Methods)

Windows personal computers offer four distinct techniques to insert standard bullet point symbols () and custom bullet list icons into any application:

Method 1: Windows Alt Codes (Numeric Keypad)

If your desktop PC keyboard or laptop features a dedicated 10-key numeric keypad on the right:

1
Ensure Num Lock is toggled ON (a light indicator on your keyboard will confirm this).
2
Press and hold down the Alt key on the left side of your keyboard.
3
Type 7 (or 0149) on the numeric keypad.
4
Release the Alt key → a standard bullet point () will instantly appear.
  • Standard Small Bullet (•): Alt + 7 or Alt + 0149
  • White Open Bullet (○): Alt + 9
  • Inverse / Square Bullet (◘): Alt + 8
  • Black Diamond Bullet (◆): Alt + 4

Method 2: Windows Emoji & Symbol Panel (Win + .)

For laptops without a physical numeric keypad (such as Dell XPS, Surface Laptop, or ThinkPad models):

  • Press Win + . (Windows Key + Period) or Win + ; to launch the pop-up panel.
  • Click the Symbols (Ω) tab at the top.
  • Select the General Punctuation category (or type "bullet" into search).
  • Click the bullet point symbol () to insert it directly into your active text editor.

Method 3: Windows Character Map (charmap)

  • Press Win + R, type charmap, and press Enter.
  • Check Advanced view, type bullet in the "Search for" field, click Select, then click Copy.
APPLE MACOS

How to Type a Bullet Point on Mac (macOS Keyboard Shortcuts)

On all MacBooks, iMacs, and Apple Magic Keyboards, macOS features a built-in hardware shortcut for bullet points:

The Mac Option + 8 Keyboard Shortcut

1
Hold down the Option (or Alt) key on your Mac keyboard.
2
Press the number 8 key on the top number row.
3
Release both keys → a bullet point symbol () instantly appears!
  • Solid Black Bullet (•): Option + 8
  • White Open Bullet (◦): Option + Shift + 9
  • Hyphen / En Dash Bullet (–): Option + -

macOS Character Viewer (Ctrl + Cmd + Space)

  • Press Ctrl + Cmd + Space to bring up the macOS Character Palette.
  • Type bullet into the search box and double-click or any circular bullet symbol.
OFFICE & GOOGLE DOCS

How to Type Bullet Points in Microsoft Word, Excel & Google Docs

Microsoft Word Shortcuts & AutoFormat

  • Toggle Bulleted List Shortcut: Select text and press Ctrl + Shift + L in MS Word for Windows.
  • AutoFormat Bulleting: Type an asterisk (*) or hyphen (-) at the beginning of a line and press Space. Word will automatically convert it into an indented bullet list.
  • Word Hex Code Converter: Type 2022 and immediately press Alt + X → instantly transforms into .

Microsoft Excel Cell Bullets

Because Excel cells treat pressing Enter as moving to the next row, use these techniques to type bullets inside single cells:

  • Keyboard Shortcut inside Cell: Double-click the cell (or press F2), hold Alt and press 7 on your numpad. Press Alt + Enter to add a new line inside the same cell.
  • Excel Formula Method: Combine text with UNICHAR or CHAR functions:
    =UNICHAR(8226) & " " & A1 or =CHAR(149) & " " & A1

Google Docs & Slides Shortcuts

  • Toggle Bullet List Shortcut: Press Ctrl + Shift + 8 (Windows) or Cmd + Shift + 8 (Mac).
  • Insert Custom Special Characters: Go to Insert → Special characters, search for "bullet", and choose from dozens of decorative bullet shapes.
MOBILE DEVICES

How to Type a Bullet Point on Mobile (iPhone, iPad & Android)

iPhone and iPad (iOS Touchscreen Keyboard)

1
Tap the 123 button at the bottom-left of your Apple keyboard.
2
Tap the #+= button above the 123 key.
3
Tap the bullet point key (). Alternatively, press and hold down the hyphen (-) key to reveal a pop-up strip containing .

Android Devices (Google Gboard & Samsung Keyboard)

  • Tap the ?123 key on Gboard.
  • Tap the =\< symbols key to locate the bullet point () button.
  • On Samsung Keyboards, tap !#1 → tap 1/2 → tap .
TYPOGRAPHY & CSS BEST PRACTICES

Typography, Formatting Rules & Custom CSS Bullet Styling

Well-formatted bullet lists improve content scannability, lower bounce rates, and boost reader engagement. Adhere to these proven editorial standards:

  • Parallel Structure: Start all bullet points in a single list with the same part of speech (e.g. all verbs or all nouns).
  • Capitalization: Capitalize the first letter of each bullet item unless the list items complete an introductory sentence fragment.
  • Punctuation: Omit trailing periods on short phrases or single-word items. Use full stops if bullets form complete sentences.

Custom CSS Bullet Styling Code Snippets

Web developers can customize HTML unordered list bullets using CSS pseudo-elements and hex Unicode escaping:

/* Method 1: Native CSS List Style Types */
ul.custom-bullets {
  list-style-type: square; /* disc | circle | square */
}

/* Method 2: Custom Styled Color Bullets with ::before */
ul.fancy-bullets {
  list-style: none;
  padding-left: 0;
}

ul.fancy-bullets li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

ul.fancy-bullets li::before {
  content: "\2022"; /* Hex Unicode for bullet point • */
  color: #3b82f6;   /* Custom vibrant blue accent color */
  font-size: 1.25rem;
  position: absolute;
  left: 0;
  top: -2px;
}
DEVELOPER CHEAT SHEET

Developer & Technical Reference (Unicode, HTML, CSS & Markdown)

Format / Environment Code / Representation Example Code Usage
Unicode Code Point U+2022 BULLET (Standard Black Small Circle)
HTML Named Entity &bull; <li>&bull; Item text</li>
HTML Decimal Code &#8226; <span>&#8226;</span>
HTML Hexadecimal Code &#x2022; <span>&#x2022;</span>
CSS Escape String \2022 li::before { content: "\2022 "; }
JavaScript Literal "\u2022" console.log("\u2022 Bullet text");
Markdown Syntax * or - or + * Bullet list item
Python String "\u2022" print("\u2022 List Item")
FREQUENTLY ASKED QUESTIONS

Frequently Asked Questions About Typing Bullet Points

On Windows keyboards equipped with a numeric keypad, the standard Alt code for a bullet point is Alt + 7 or Alt + 0149. Hold down the Alt key, enter 7 or 0149 on your numpad, and release Alt.
On macOS, press Option + 8 (or Alt + 8). This hardware key combination instantly inserts a bullet point symbol (•) into any document, form field, or browser window.
In Microsoft Word, press Ctrl + Shift + L to immediately convert selected paragraphs into a bulleted list. Alternatively, type an asterisk (*) or hyphen (-) followed by Space at the start of a line to trigger AutoFormat bulleting.
Double-click the Excel cell (or press F2), hold Alt and press 7 on your numeric keypad. On Mac Excel, press Option + 8 inside the cell. You can also use the formula =CHAR(149) & " " & A1 or =UNICHAR(8226) & " " & A1.
In Google Docs, press Ctrl + Shift + 8 (on Windows/ChromeOS) or Cmd + Shift + 8 (on Mac) to toggle a bulleted list. You can also click Insert → Special characters → search "bullet" to insert custom standalone bullet glyphs.
On Windows laptops lacking a numpad, press Win + . (Windows Key + Period) to open the Emoji & Symbol Panel, click Symbols (Ω), navigate to General Punctuation, and click •. You can also click any symbol on our 1-click copy box to copy it instantly.
Both generate the exact same bullet point symbol (•). Alt 7 uses the legacy OEM CP437 character encoding table, while Alt 0149 uses the Windows-1252 ANSI character set. Modern operating systems map both to Unicode U+2022.
In CSS, hide standard browser bullets with list-style: none;, then add custom bullets using the ::before pseudo-element: li::before { content: "\2022"; color: #3b82f6; position: absolute; left: 0; }.
TYPING & SYMBOL DIRECTORY

Explore All Keyboard Shortcut & Symbol Guides

Need shortcuts for other special characters, math symbols, diacritics, or currency signs? Explore our complete library of typing guides:

Degree Symbol (°) Em Dash (—) Euro Symbol (€) Square Root (√) Theta Symbol (θ) Upside Down ? (¿) At Symbol (@) Master Accented Letters A with Accent (á) E with Accent (é) N with Accent (ñ) O with Accent (ó) U with Accent (ú) Umlaut (¨) Bullet Point (•) 1-Click Copy Symbol Hub Alt Code Finder All Typing Guides Hub