How to Type the Pilcrow Paragraph Symbol Using Keyboard Shortcuts
The pilcrow (¶) is the classic paragraph mark editors, lawyers, and designers quietly rely on. Yet most keyboards pretend it doesn’t exist.
Once you know the hidden chords that summon it, you’ll drop ¶ into documents, code, and layouts without breaking stride. Below are the exact keystrokes, the logic behind them, and the rare traps that can still derail you.
Windows Native Shortcuts That Always Work
Hold Alt, type 0182 on the numeric keypad, release Alt—¶ appears instantly in Word, Notepad, Gmail, and every browser field. The digits must be entered on the physical number pad; the row above QWERTY will fail.
If your laptop lacks a keypad, enable the on-screen numeric pad via Windows ⊞ + Ctrl + O, then click the digits while holding the physical Alt key. This workaround keeps the code intact even on ultra-portables.
Microsoft Word adds a convenience layer: type 00B6 followed immediately by Alt + X and Word converts the Unicode string to ¶ without any extra dialog. This toggles both ways, so selecting ¶ and hitting Alt + X reverts it back to 00B6 for quick inspection.
Registry Tweaks for Global Alt Codes
Windows only listens to Alt codes when the foreground thread uses a Western keyboard layout. If you switch to INTL or DVORAK, the same digits may print æ or ø instead.
Open regedit, navigate to HKEY_CURRENT_USERControl PanelInput Method, create a REG_SZ value named EnableHexNumpad, set its data to 1, and reboot. Afterward you can also use Alt + + B6 (plus the standard keypad) for a hexadecimal entry that survives layout switches.
macOS Paths From QWERTY to Pilcrow
Mac hardware has no AltGr, but it offers two fast sequences. The first is Option + 7—memorable because 7 shares the & key, and both symbols look like stacked bits.
The second, longer route is Control + Command + Space to open the emoji picker, then type “pilcrow” in the search bar and hit Return. This method shines when you forget the compact combo or need adjacent paragraph variants like the reversed pilcrow.
Creating a Global macOS Text Replacement
Open System Settings > Keyboard > Text Replacements, click the plus icon, enter (pp) in the Replace column and ¶ in the With field. From that moment, any Cocoa app—Safari, Mail, Notes—will swap those four keystrokes instantly.
The replacement triggers after a space or punctuation, so legal writers can chain (pp)1. (pp)2. to auto-number paragraphs without taking fingers off the keyboard.
Linux: Compose Key Versus Ctrl-Shift-U
Set a Compose key in GNOME Tweaks—Right Alt is a popular choice—then press Compose, P, P. The sequence feels like drawing the pilcrow’s two strokes.
If you prefer hexadecimal, Ctrl + Shift + U releases an underlined u, type B6, then Space or Enter to commit ¶. This works everywhere GTK draws text, including Firefox terminals and LibreOffice.
On KDE, the same shortcut is swallowed by KWin for window tiling; re-map global shortcuts under System Settings > Shortcuts > Global to free the chord.
Console-Only Servers Without X11
On a headless Ubuntu box, Alt codes are meaningless. Instead, echo -e ‘u00B6’ | xclip -selection clipboard to push ¶ directly into the clipboard over SSH.
Alias it in .bashrc as alias pc=”echo -e ‘u00B6’ | xclip -sel c” so typing pc returns you to the prompt with the symbol ready for pasting into config files or Markdown.
Chromebook and ChromeOS Hidden Unicode
Press Ctrl + Shift + U, release, then B6 and Enter—identical to Linux because ChromeOS is Gentoo under the hood. The on-screen keyboard shows no hint, so memorizing the code is essential.
If you switch to tablet mode, hold the ?123 key until the unicode tray appears, tap 00B6, then Insert. Detachable keyboards lose the physical Search key, but the Unicode sequence still fires.
iPhone & iPad: No Jailbreak Required
Open Settings > General > Keyboard > Text Replacement, tap +, type ¶ in the Phrase field and ppc in the Shortcut field. Every app from Pages to WhatsApp will expand the three letters.
For occasional use, switch to the Greek keyboard, long-press the & key, and slide to ¶—Apple hides it there because the glyph historically followed the ampersand in type cases.
External Magic Keyboard users can remap Caps Lock to Escape in Settings, then assign the freed Caps to ¶ via a third-party utility like Keysmith, giving a hardware-level one-tap solution.
Android Stock to Samsung Layers
Gboard holds ¶ under the ?123 menu, yet you must long-press the paragraph key itself—counter-intuitively labeled P/¶ on some layouts. On Pixel phones the key is visible; Samsung One UI collapses it behind the ª symbol, requiring an extra tap.
Create a macro in Samsung’s Keys Cafe: record once typing 00B6 followed by space, then assign the macro to the unused Han key on physical DeX docks. One press, perfect pilcrow, no pop-up menus.
Microsoft Word Power-User Tricks
Turn on “Show paragraph marks” under Home > Paragraph to reveal ¶ in situ; this visual feedback trains your muscle memory for the real symbol. Select any visible ¶, press Alt + F3 to save it as a Building Block, name it p1, and set Gallery to AutoText.
From then on, typing p1 + F3 anywhere in the document drops a styled pilcrow that matches your font size and color, bypassing the need to reformat the raw Unicode glyph.
VBA One-Click Ribbon Button
Open the VBA editor with Alt + F11, insert a module, and paste Sub InsertPilcrow(): Selection.TypeText Text:=ChrW(182). Add the macro to the Quick Access Toolbar; a single click now plants ¶ at the cursor without keyboard gymnastics.
Because ChrW uses the decimal 182, the macro works in every localized Office version, avoiding hexadecimal confusion across languages.
Google Docs and the Secret Override
Docs blocks Alt codes in the browser, but it respects Insert > Special characters > Search “pilcrow.” Once the glyph is inserted, highlight it, go to Tools > Preferences > Substitutions, and map (p) to ¶.
The substitution survives across documents and accounts, so signing in on any machine restores your shortcut within seconds.
LaTeX, Markdown, and Code Repos
In LaTeX, P{} produces a perfect pilcrow without entering math mode. Add xspace and define newcommand{para}{Pxspace} to avoid spacing errors before punctuation.
Markdown itself has no ¶ shortcut, yet GitHub renders 0B6 in fenced code blocks if the language tag is omitted, letting you show the literal escape sequence for documentation.
VS Code users can bind Ctrl+Alt+P to insert 00B6 by editing keybindings.json: { “key”: “ctrl+alt+p”, “command”: “type”, “args”: { “text”: “¶” } }. Emmet abbreviations also accept ¶ directly, so p*4>lorem expands four pilcrow-led paragraphs instantly.
Web Input, CSS, and HTML Entities
Type ¶ or ¶ in any HTML editor to render ¶ on the front end. The numeric form is three keystrokes shorter and memorable because 182 matches Windows Alt code.
CSS can prepend pilcrows automatically: p::before { content: ‘