Text System Tutorial Updated July 2026

ASCII to Decimal Converter — How to Convert Text to Decimal

Learn the standard mapping of character text symbols to base-10 decimal representations.

Try it: ASCII to Decimal mini-calculator

Decimal Result: 65 66 67

Understanding character mappings.

Under the ASCII encoding standard, every readable character, symbol, or command maps to a specific number between 0 and 127.

For example, capital letter 'A' is index 65, lowercase 'a' is 97, and the space character is 32.

Step-by-step example.

Convert the string "Hi" into decimal:

  1. Find the decimal index for character 'H': 72.
  2. Find the decimal index for character 'i': 105.
  3. Concatenate with a space for readability: 72 105.

Positional Character Index & Decimal Values

In standard digital encodings, each character's numeric index position determines its value. The decimal numeral system represents these indices as standard base-10 numbers, making it easy for programmers to perform mathematical logic or sort text based on their numerical order.

Under this indexing convention:

  • Control codes: The first 32 positions (decimal 0 to 31) are reserved for non-printable control characters, such as carriage returns, tabs, and line feeds.
  • Printable symbols: Positions 32 to 127 contain standard symbols (like the space character at index 32), numeric digits (0-9 map to values 48-57), and the English alphabet.
  • Case-sensitive boundaries: There is an offset of 32 numbers between uppercase letters ('A' starts at 65) and lowercase letters ('a' starts at 97), which allows systems to toggle character case by simply flipping a single bit.

Because standard ASCII can only define 128 characters (occupying 7 bits of a single byte), it cannot represent accented characters or symbols from foreign languages. To address this limitation, extended character sets and Unicode standards (like UTF-8) were developed, allowing characters to span multiple byte positions.

ASCII Alphabet reference

Char Decimal
A65
B66
a97
b98

Explore Other Popular Converters