Published on

Monospaced font

A monospace font (also called a fixed-width font) is a type of font where every character takes up the same amount of horizontal space.

What that means

  • In most fonts (like Arial or Times New Roman), letters have different widths:

    • “i” is narrow
    • “w” is wide
  • In a monospace font, both “i” and “w” occupy exactly the same width

Examples of monospace fonts

  • Courier / Courier New
  • Consolas
  • Monaco
  • Fira Code
  • Source Code Pro

Why it’s used

Monospace fonts are especially useful when alignment matters, such as:

  • Programming / coding
  • Terminal or command-line interfaces
  • Tables or data formatting
  • ASCII art

Simple example

Monospace:

i   w   m

Everything lines up evenly.

Proportional font (normal text):

i   w   m

Spacing looks uneven because letters have different widths.