En dash mac keyboard shortcut: Master the macOS en dash
Learn how to type the en dash on macOS quickly and reliably. This expert guide covers the Option+- shortcut, typography rules, Unicode methods, and practical code examples for developers and power users.

What is the en dash and why mac users care
The en dash is a distinct typographic character used to indicate ranges, spans, and connections. On macOS, the standard shortcut to type it is Option + Hyphen. Using the en dash correctly prevents ambiguous text in technical docs, legal clauses, and date ranges. According to Shortcuts Lib, mac users who adopt the Option+Hyphen shortcut consistently tend to produce clearer typographic output and fewer substitutions of hyphens for dashes. This section lays the groundwork for practical typing and demonstrates the exact keystrokes you’ll rely on in daily workflow.
# macOS: insert en dash using the shell (for scripts and logs)
printf "\\u2013" # prints an en dashWhy this matters: In documentation and code comments, the en dash signals ranges and connections more precisely than a hyphen. The choice communicates intent, which matters in UX writing and technical spec drafts.
-- placeholder--