Skip to content

Instantly share code, notes, and snippets.

@woodworker
Last active June 11, 2019 10:40
Show Gist options
  • Save woodworker/7696835 to your computer and use it in GitHub Desktop.
Save woodworker/7696835 to your computer and use it in GitHub Desktop.
4x4 pixel font
A
1111
1001
1111
1001
B
1000
1110
1010
1110
C
1111
1000
1000
1111
D
1110
1001
1001
1110
E
1111
1110
1000
1111
F
1111
1110
1000
1000
G
1111
1000
1001
1111
H
1000
1000
1111
1001
I
0100
0100
0100
0100
J
0100
0100
0100
1100
K
1010
1100
1010
1001
L
1000
1000
1000
1111
M
1001
1111
1001
1001
N
1001
1101
1011
1001
O
1111
1001
1001
1111
P
1111
1001
1110
1000
Q
1111
1001
1111
0001
R
1110
1001
1100
1010
S
1111
1000
0001
1111
T
1111
0100
0100
0100
U
1001
1001
1001
1111
V
1001
0101
0011
0001
W
1001
1001
1001
0110
X
0000
1010
0100
1010
Y
1001
0110
0010
0010
Z
1111
0100
0010
1111
letters = {
"A":[
"1111",
"1001",
"1111",
"1001"
],
"B": [
"1000",
"1110",
"1010",
"1110"
],
"C": [
"1111",
"1000",
"1000",
"1111"
],
"D": [
"1110",
"1001",
"1001",
"1110"
],
"E": [
"1111",
"1110",
"1000",
"1110"
],
"F": [
"1111",
"1110",
"1000",
"1000"
],
"G": [
"1111",
"1000",
"1001",
"1111"
],
"H": [
"1000",
"1000",
"1110",
"1001"
],
"I": [
"1",
"1",
"1",
"1"
],
"J": [
"01",
"01",
"01",
"11"
],
"K": [
"1010",
"1100",
"1010",
"1001"
],
"L": [
"1000",
"1000",
"1000",
"1111"
],
"M": [
"10001",
"11011",
"10101",
"10001"
],
"N": [
"1001",
"1101",
"1011",
"1001"
],
"O": [
"1111",
"1001",
"1001",
"1111"
],
"P": [
"1110",
"1001",
"1110",
"1000"
],
"Q": [
"11110",
"10010",
"11110",
"00001"
],
"R": [
"1110",
"1001",
"1110",
"1010"
],
"S": [
"1111",
"100",
"1001",
"1111"
],
"T": [
"1111",
"0100",
"0100",
"0100"
],
"U": [
"1001",
"1001",
"1001",
"1111"
],
"V": [
"1000001",
"0100010",
"0010100",
"0001000"
],
"W": [
"10001",
"10001",
"10101",
"01110"
],
"X": [
"01010",
"00100",
"01010",
"10001"
],
"Y": [
"10001",
"01010",
"00100",
"00100"
],
"Z": [
"1111",
"0010",
"0100",
"0100"
],
" ": [
" ",
" ",
" ",
" "
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment