Text to Binary Converter in python
Text to Binary Converter
Text to Binary Converter in python
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
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 &&