Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

binary to text python

a_binary_string = "01100001 01100010 01100011"
ascii_string = "".join([chr(int(binary, 2)) for binary in a_binary_string.split(" ")])
# ascii_string = "abc"
Source by www.kite.com #
 
PREVIOUS NEXT
Tagged: #binary #text #python
ADD COMMENT
Topic
Name
9+8 =