# Simple ASCII table usage: ```elm Ascii.toString [ 0x48,0x65,0x6c,0x6c,0x6f ] == "Hello" Ascii.fromString "Hello" == [ 0x48,0x65,0x6c,0x6c,0x6f ] ```