A simple binary to text converter that converts binary numbers to text.
[advanced_iframe src=”/texttobinary.html” width=”100%” height=”700″]
How to use Text to Binary Converter
- Enter the text string as input in the upper text box.
- Click on the convert button.
- The result is obtained in the lower text box.
It is a number expressed in the base-2 numeral system or binary numeral system. It uses only two symbols: “0” and “1”
ASCII stands for American Standard Code for Information Interchange. It is a character encoding standard consisting of 128 characters. It is a numeric representation of characters.
To convert text to binary, firstly, use the following ASCII table to get the decimal number of each character. Then, you may need to use a Decimal to Binary converter.
Let’s convert the following text to binary:
“Code Utility“
Now, let’s map each character to a decimal number using the above table. And then, use the decimal to binary converter tool to finally convert it to a binary number.
C = 67 = 01000011
o = 111 = 01101111
d = 100 = 01100100
e= 101 = 01100101
<space> = 32 = 00100000
U = 85 = 01010101
t = 116 = 01110100
i = 105 = 01101001
l = 108 =01101100
i = 105 = 01101001
t = 116 = 01110100
y = 121 = 01111001
So the binary string that represents “Code Utility” is 01000011 01101111 01100100 01100101 00100000 01010101 01110100 01101001 01101100 01101001 01110100 01111001