Some old games have a very simple text encoding in which:
0x00 = '0'
0x01 = '1'
...
0x09 = '9'
0x0A = 'A'
0x0B = 'B'
0x0C = 'C'
...
0x22 = 'Y'
0x23 = 'Z'
...
0xFF = string terminator
I figure this encoding must be pretty common due to its extreme simplicity so I was wondering if there's a correct/de facto name for it.