Info
Small app that allows you to change text to binary code or binary code to text...
Pics:
This is Icon
This is screen of Application
Download
Binary Encoder
Credits
Onlykl
Tweak
Info
Small app that allows you to change text to binary code or binary code to text...
Pics:
This is Icon
This is screen of Application
Download
Binary Encoder
Credits
Onlykl
Tweak
Examples of use?
Code:def string_to_binary(s): return " ".join( [ '{0:08b}'.format(ord(c)) for c in s ] ) def binary_to_string(s): return "".join( [ chr(int(c,2)) for c in s.split(' ') ] )
Last edited by Sednogmah; 06-02-2010 at 07:56 AM.
951388dcb8e5be825c2c10a7f53c16fcd84fc6c8b76ff0483237eeff745eaeac