And it's quite easy to unpack such compressed files to get the usual TTF (and maybe OTF) fonts -- just use the
woff2_decompress utility from the woff2 Google project on GitHub:$ woff2_decompress myfont.woff2
Software & hardware info, reviews, notes, tutorials, FAQs and HOWTOs...
Having fun is mandatory!
woff2_decompress utility from the woff2 Google project on GitHub:$ woff2_decompress myfont.woff2
base64 utility is a part of coreutils package (that package has a "required" priority, i. e., it's an essential package for the system to work).$ base64 Hello, world! SGVsbG8sIHdvcmxkIQo= $ $ base64 -d SGVsbG8sIHdvcmxkIQo= Hello, world!
$ base64 -d in.txt > out.dat
base32, a related thing found in the Debian coreutils package;basez, another similar utility from other developers (official site, Debian package).