Binary Spritz ... in binary!

Do you want to know the binary ascii of Binary spritz? Here’s a quick python script to print it!

x = 'BinarySpritz'

for i in x:
    print(bin(ord(i))[2:], end=' ')
1000010 1101001 1101110 1100001 1110010 1111001 1010011 1110000 1110010 1101001 1110100 1111010

We are using the following functions:

Nice and easy ;)