폰트
특정 크기, 굵기, 스타일의 서체 구현. 디지털 타이포그래피에서는 글리프 정의와 메트릭을 포함한 폰트 파일(TTF, OTF, WOFF2)을 의미합니다.
What is a Font?
A font is a collection of glyphs — visual representations of characters — designed with a unified visual style and packaged into a file that software can use to render text. In everyday speech "font" and "typeface" are used interchangeably, but there is a technical distinction: a typeface is the design family (e.g., Helvetica), while a font originally referred to a specific weight and size within that family (e.g., Helvetica Bold 12pt). In digital usage, a font file contains an entire typeface family or a single style within it.
Fonts are critical to Unicode rendering. No single font covers all 154,998 characters in Unicode 16.0. Instead, operating systems use font fallback chains: when a character is missing from the primary font, the renderer automatically substitutes a glyph from the next font in the chain that contains it.
Font File Formats
Modern fonts use the OpenType (.otf) or TrueType (.ttf) formats, which are functionally equivalent containers. Web fonts are distributed as WOFF (Web Open Font Format) or WOFF2 (compressed), which are wrappers around the same data.
| Format | Extension | Best For |
|---|---|---|
| TrueType | .ttf |
Windows/cross-platform compatibility |
| OpenType CFF | .otf |
PostScript-based outlines, print quality |
| WOFF | .woff |
Web delivery (legacy browsers) |
| WOFF2 | .woff2 |
Web delivery (modern, ~30% smaller) |
| Variable Font | .ttf or .otf |
Multiple weights/styles in one file |
Unicode Coverage
Every font has a Unicode coverage — the set of code points for which it provides glyphs. Tools like fc-query (Linux), Font Book (macOS), or online tools like Wakamai Fondue reveal exactly which characters a font covers.
Fonts designed for broad Unicode support include: - Noto (Google): aims for complete Unicode coverage across all scripts - GNU Unifont: bitmap font covering the entire Basic Multilingual Plane - DejaVu Sans: covers Latin, Greek, Cyrillic, and many symbols
Variable Fonts
OpenType 1.8 introduced variable fonts, which encode an entire design space (weight, width, slant, optical size) as a single file with interpolation axes. Instead of separate Bold, Light, and Condensed files, one variable font file can render any point along those axes. This reduces HTTP requests for web fonts and enables smooth typographic animations.
/* Variable font usage in CSS */
@font-face {
font-family: "Inter";
src: url("Inter.var.woff2") format("woff2-variations");
font-weight: 100 900;
}
h1 {
font-family: "Inter";
font-weight: 650; /* any value between 100–900 */
}
Quick Facts
| Property | Value |
|---|---|
| Typeface vs. font | Typeface = design family; font = specific file/style |
| Max Unicode 16.0 characters | 154,998 assigned code points |
| Most complete Unicode font | Noto (Google), GNU Unifont |
| Web font formats | WOFF2 (preferred), WOFF (fallback) |
| Variable font axis examples | wght (weight), wdth (width), ital (italic), opsz (optical size) |
| Font fallback mechanism | OS-level chain; controlled by font-family stack in CSS |
| CSS property for Unicode range | unicode-range in @font-face (subset loading) |
관련 용어
타이포그래피의 더 많은 용어
CSS @font-face descriptor specifying which Unicode code points a font should cover. …
Em: 폰트 크기와 같은 너비. En: Em의 절반. 엠 대시 너비, 엠 …
The mechanism by which a rendering engine substitutes glyphs from a secondary …
Modern font format developed by Microsoft and Adobe supporting up to 65,535 …
문자가 오른쪽에서 왼쪽으로 흐르는 텍스트 방향. 아랍어, 히브리어, 타아나 문자 등에서 사용되며, …
Fonts downloaded by the browser to render text, declared via CSS @font-face. …
앞의 기본 문자에 붙어 수정하는 문자. 일반 범주: Mn(비공백), Mc(공백 결합), Me(둘러싸기). …
가로 또는 세로 공간을 표현하지만 눈에 보이는 글리프가 없는 문자. 유니코드는 서로 …
폰트가 렌더링하는 문자의 시각적 표현. 하나의 문자가 여러 글리프를 가질 수 있고(합자, …
전진 너비가 0인 문자 — 렌더링에서 보이지 않지만 텍스트 동작에 영향을 줍니다. …