Text to ASCII Converter

Convert any text to its ASCII code values. Each character maps to a number 0-127 in the ASCII standard — enter any text to see the codes for every character.

Common Values

InputAscii
Hello72, 101, 108, 108, 111
World87, 111, 114, 108, 100
ABC65, 66, 67
hello world104, 101, 108, 108, 111, 32, 119, 111, 114, 108, 100
012348, 49, 50, 51
ASCII65, 83, 67, 73, 73

How It Works

ASCII (American Standard Code for Information Interchange) assigns a unique number from 0 to 127 to each character. "Hello" becomes 72, 101, 108, 108, 111. Uppercase A is 65, lowercase a is 97, the digit 0 is 48, and space is 32. The relationship between uppercase and lowercase is always 32 apart.

Worked Examples

TextAscii
A65
a97
048
Z90
z122
32
!33
~126

Related Conversions

Frequently Asked Questions