Quora

Why Do Programmers Use Courier Typeface?

Coding in Courier 12-point font.

Screenshot courtesy of Code Project’s Font Survey

This question originally appeared on Quora.

Answer by Leonid S. Knyshov, CEO of a customer referrals startup, consulting product manager:

We use monospace fonts to keep code aligned.

Courier is just one of many monospace fonts. They are also called fixed-width fonts. Consolas is the default font in Visual Studio, and there are even better fonts for programmers.

We like fonts where:

  • 0 cannot be confused with O
  • Punctuation characters like “,” are bigger because they are far more important in programming than in daily use
  • Brackets are distinct
  • “1,” “I,” “l,” and “|” cannot be confused (that is 1, i, L, and the pipe sign)

This leads to fewer bugs. Mistyping “,” as “.” will often break your code and at least lead to unexpected behavior. The same is true for ":” versus ";” and so on.

Here is an exhaustive list of the best monospaced programming fonts.

More questions on Computer Programmers: