Converting WOFF2 to TTF unwraps the Brotli-compressed web font to produce a standard desktop font file. The extracted TTF works in every OS and design tool. Useful for installing a web font locally or feeding it into production pipelines that don't read WOFF2.
Drag & drop font files here, or browse
Drop your WOFF2 files here
Lossless extraction. The TTF contains the same glyph data the WOFF2 wrapped, decompressed back to uncompressed form. File size grows to the pre-compression size.
TTF runs on every OS, design tool, and embedded system. There's no environment that can read fonts but not TTF.
WOFF2 uses Google's Brotli compression instead of zlib, cutting file size another 30% versus WOFF. It's the current standard for web font delivery, supported in every modern browser since 2017. A typical Latin-only WOFF2 is 20–40% the size of the source TTF.
TTF (TrueType) was developed by Apple in the late 1980s and became the default desktop font format across every major OS. It describes glyphs with quadratic Bézier curves and ships uncompressed, which makes files straightforward to parse but larger than compressed alternatives. Every text-rendering system on the planet accepts TTF.
If the WOFF2 wrapped a TTF, yes: bit-identical after decompression. If it wrapped an OTF with PostScript outlines, the conversion to TTF may approximate the outlines.
Depends on the license. Web font licenses typically allow embedding in web pages but not local installation or redistribution. Check the foundry's terms first.
WOFF2 uses Google's Brotli compression instead of zlib, cutting file size another 30% versus WOFF. It's the current standard for web font delivery, supported in every modern browser since 2017. A typical Latin-only WOFF2 is 20–40% the size of the source TTF.
TTF (TrueType) was developed by Apple in the late 1980s and became the default desktop font format across every major OS. It describes glyphs with quadratic Bézier curves and ships uncompressed, which makes files straightforward to parse but larger than compressed alternatives. Every text-rendering system on the planet accepts TTF.
Yes. The converter runs entirely in your browser using WebAssembly. Your font files are never uploaded, never sent to a server, and never leave your device.
There's no hard limit. Font files are usually small (under a few MB), so even very large fonts process without issue. Variable fonts with many axes are handled cleanly.