├── LICENSE ├── preview.png ├── src └── 331.png ├── Makefile └── README.md /LICENSE: -------------------------------------------------------------------------------- 1 | Love thy neighbor. -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start/331/master/preview.png -------------------------------------------------------------------------------- /src/331.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/start/331/master/src/331.png -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: all 2 | 3 | all: 4 | magick src/331.png -filter point -resize 1200% -quiet preview.png 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![Full character set](preview.png) 2 | 3 | 331 is a 3x3 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 | 13 | --------------------------------------------------------------------------------