├── LICENSE ├── preview.png ├── src └── 341.png ├── Makefile └── README.md /LICENSE: -------------------------------------------------------------------------------- 1 | Love thy neighbor. -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start/341/master/preview.png -------------------------------------------------------------------------------- /src/341.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start/341/master/src/341.png -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: all 2 | 3 | all: 4 | magick src/341.png -filter point -resize 1200% -quiet preview.png 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![Full character set](preview.png) 2 | 3 | 341 is a 3x4 pixel font without animation. 4 | 5 | The characters are arranged in ASCII-order: 6 | 7 | !"#$%&'()*+,-./012 8 | 3456789:;<=>?@ABCDE 9 | FGHIJKLMNOPQRSTUVWX 10 | YZ[\]^_`abcdefghijk 11 | lmnopqrstuvwxyz{|}~ 12 | --------------------------------------------------------------------------------