Skip Navigation

ASCII text to binary converter

Convert ASCII text to binary representation online.

From
To
Input
Encoding
Output

How to convert ASCII text to Binary

Each ASCII character maps to an 8-bit binary code.

char → ASCII code → 8-bit binary

Convert each character to its ASCII code, then to 8-bit binary:

Example: Convert 'Hi' to binary:

H=01001000, i=01101001 → 01001000 01101001



See also