Enter ASCII/Unicode text string and press the Convert button (e.g enter "Example"
to get "01000101 01111000 01100001 01101101 01110000 01101100 01100101"):
Binary to text converter ►
How to Convert Text to Binary
Convert text to binary ASCII code:
- Get character
- Get decimal code of character from ASCII table
- Convert decimal to binary byte
- Continue with next character
Example
Convert "Plant trees" text to binary ASCII code:
Solution:
Use ASCII table to get ASCII code from character.
"P" => 80 = 26+24 = 010100002
"l" => 108 = 26+25+23+22 = 011011002
"a" => 97 = 26+25+20 = 011000012
⁝
For all the text characters you should get the binary bytes:
"01010000 01101100 01100001 01101110 01110100 00100000 01110100 01110010 01100101 01100101 01110011"
How to convert Text to Binary?
- Get character
- Get ASCII code of character from ASCII table
- Convert decimal to binary byte
- Continue with next character
How to use Text to Binary converter?
- Paste text in input text box.
- Select character encoding type.
- Select output delimiter string.
- Press the Convert button.
How to convert English to Binary code?
- Get english letter
- Get ASCII code of the english letter from ASCII table
- Convert decimal to binary byte
- Continue with next english letter
How to convert 'A' character to binary?
Use ASCII table: 'A' = 6510 = 64+1 = 26+20 = 010000012
How to convert '0' character to binary?
Use ASCII table: '0' = 4810 = 32+16 = 25+24 = 001100002
ASCII text to hex,binary conversion table
Binary to text converter ►