example for "hi" characters: 2 binary: 01000 (01000 = 8 = h) binary: 01001 (01001 = 9 = i) output: hi if you need to convert a lot of words id suggest going word by word, it'll be eaiser
if you dont know how 5 digit binary works 0 0 0 0 0 = binary 16 8 4 2 1 = value if theres a 1, add the number below it to the total, if theres a 0, ignore it example: 00001 = 1, 00010 = 2, 00011 = 3, ect. this can go on forever but i stop it at 5 because thats the least amount of numbers needed for 27