About This Tool
Convert any ASCII character or string into its 8-bit binary representation. Each character in the ASCII standard (codes 0–127) has a unique 7-bit pattern, padded to 8 bits for byte alignment. This tool is essential for computer science students studying character encoding, serial communication protocols, and data representation in memory. Enter text like "Hi" and see each letter broken down into its binary byte — H becomes 01001000, i becomes 01101001.
Worked Examples
Input: A → Output: 01000001
ASCII code 65 → binary 01000001
Input: Hi → Output: 01001000 01101001
H=72=01001000, i=105=01101001
Input: 42 → Output: 00110100 00110010
Digit "4"=52=00110100, "2"=50=00110010 (character codes, not the number 42)
Need Full ASCII Table?
Browse the complete ASCII reference table or use our full ASCII Converter for multi-format output (decimal, hex, octal, binary).