JetBrains Mono

Monospace coding-mono by JetBrains #127 on Google Fonts
Weight

About JetBrains Mono

JetBrains가 자체 개발한 이 모노스페이스 서체는 늘어난 문자 높이, 더 넓은 레터폼을 통한 눈의 피로 감소, 일반적인 연산자 쌍을 깔끔한 단일 글리프로 합치는 138개의 프로그래밍 합자를 통해 장시간 프로그래밍 세션을 위해 엔지니어링되었습니다. 가변 굵기 축은 여덟 단계를 커버하며, 라틴 외에 키릴, 그리스, 베트남어를 지원합니다. 기술적 정밀함과 구문 강조 아래서의 가독성으로 전 세계 개발자들에게 선호되는 서체가 되었습니다.

Character Map

AaBbCcDdEeFfGgHhIiJjKkLlMm
NnOoPpQqRrSsTtUuVvWwXxYyZz
0123456789
!@#$%^&*()_+-=[]{}|;':",.<>?

Code Editor Preview

example.js
const fibonacci = (n) => {
  if (n <= 1) return n;
  return fibonacci(n - 1) + fibonacci(n - 2);
};

// Generate first 10 numbers
const results = Array.from(
  { length: 10 },
  (_, i) => fibonacci(i)
);

console.log(`Result: ${results.join(', ')}`);

Coding Ligatures

=> != !== === >= <= -> ->> |> <| :: && || ++ -- ** // /* */ ?? << >> ?. ...

Character Disambiguation

Can you tell these apart? A good monospace font makes similar characters easy to distinguish.

Zero vs O 0 O o
One vs l vs I 1 l I | !
Quotes ' ' " " ` ´
Braces ( ) [ ] { } < >
Punctuation . , : ; .. ...

Weight Waterfall (8)

100 Thin
200 ExtraLight
300 Light
400 Regular
500 Medium
600 SemiBold
700 Bold
800 ExtraBold

How to Use

<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@100;200;300;500;600;700;800;400&display=swap" rel="stylesheet">
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@100;200;300;500;600;700;800;400&display=swap');
font-family: 'JetBrains Mono', monospace;
brew install --cask font-jetbrains-mono

Details

Category
Monospace
Style
coding-mono
Weights
8
Italic
한국어
Designer
JetBrains
License
OFL
Version
Popularity
#127

License Usage

Web useAllowed
PrintAllowed
Video / BroadcastAllowed
PackagingAllowed
App embeddingAllowed
Brand / LogoAllowed
ModificationAllowed

OFL — Free for personal & commercial use

Language Support

cyrillic cyrillic-ext greek latin latin-ext vietnamese

Best For

code terminal developer-tools

Typography Concepts

  • Monospace

    A typeface where every character occupies the same horizontal width. Essential for code editors and tabular data.

  • Font Stack

    An ordered list of fonts in CSS font-family, providing fallbacks if the preferred font is unavailable. E.g., 'Inter, system-ui, sans-serif'.

Articles About JetBrains Mono