Pankaj0038 / dcodeKi

Python GUI based encoder-decoder tool
https://pankaj0038.github.io/dcodeKi/
8 stars 18 forks source link

add binary to text decoder #4

Closed Pankaj0038 closed 9 months ago

Pankaj0038 commented 9 months ago

convert binary string to decimal numbers and convert it to text message (according to the ASCII number)

for space separated binary string example: "01101000 01100101 01101100 01101100 01101111" --> 104,101,108,108,111 --> hello 104 101 108 108 111

for non-space separated binary string (separate them into 8 bit binary first) example: "0110100001100101011011000110110001101111" --> 104,101,108,108,111 --> hello

k3s1 commented 9 months ago

assign this issue to me under JWOC

Pankaj0038 commented 9 months ago

okay @k3s1