Text to Binary Converter

Text to Binary Converter in python

txt

Programmed in Python | PySimpleGUI

How it works

Simple text to binary and binary to text converter easy to use. Its convert from
text ascii to binary and from binary to text ascii.

ASCII text encoding uses fixed 1 byte for each character.

UTF-8 text encoding uses variable number of bytes for each character. This requires delimiter between each binary number.

Convert binary ASCII code to text:

Get binary byte
Convert binary byte to decimal
Get character of ASCII code from ASCII table
Continue with next byte

How to use

Python3+ Windows

git clone https://github.com/adrijano/Text-to-Binary-Converter-v1.1.git

cd Text-to-Binary-Converter-v1.1 && pip install -r requirements.txt

python tbc.py

Python3+ linux

git clone https://github.com/adrijano/Text-to-Binary-Converter-v1.1.git

cd Text-to-Binary-Converter-v1.1 && pip install -r requirements.txt

python3 tbc-linux.py

Windows exe:

cd dist

tbc.exe

Sample

testing

1110100 1100101 1110011 1110100 1101001 1101110 1100111


programing with python

1110000 1110010 1101111 1100111 1110010 1100001 1101101 1101101 1101001 
1101110 1100111 100000 1110111 1101001 1110100 1101000 100000 1110000 
1111001 1110100 1101000 1101111 1101110

GitHub

https://github.com/adrijano/Text-to-Binary-Converter-v1.1