Skip to content

Instantly share code, notes, and snippets.

@kosugi
Created September 2, 2021 05:46
Show Gist options
  • Save kosugi/7dfb86aade53318a38e06d6c30337dae to your computer and use it in GitHub Desktop.
Save kosugi/7dfb86aade53318a38e06d6c30337dae to your computer and use it in GitHub Desktop.
xs = '''
11100011 10000010 10101000 11100011 10000011 10110011 11100011 10000010 10111000
11100011 10000011 10001011 11100011 10000010 10100010 11100011 10000000 10000001
11100011 10000011 10000111 11100011 10000010 10110110 11100011 10000010 10100100
11100011 10000011 10001010 11100011 10000011 10111100 11100101 10001011 10011111
11101001 10011011 10000110 11100011 10000001 10010111 11100011 10000001 10100110
11100011 10000001 10111110 11100011 10000001 10011001 00101110 00001010 11100011
10000010 10000001 11100011 10000001 10100011 11100011 10000001 10100001 11100011
10000010 10000011 11100110 10100101 10111101 11100011 10000001 10010111 11100011
10000001 10000100 11100100 10111011 10010101 11100100 10111010 10001011 11100011
10000001 10100111 11100011 10000001 10011001 00100001
'''.strip().split()
print(bytes(map(lambda v: int(v, 2), xs)).decode('UTF-8'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment