⚡ Free ASCII Converter

ASCII to Decimal Converter

Convert ASCII text to decimal character codes instantly. Enter letters, numbers, spaces, punctuation, or control characters to see the decimal code assigned to each ASCII character.

✓ Free ✓ No sign-up ✓ Character-by-character ✓ Standard ASCII codes
TXT→DEC
ASCII → Decimal
Ready
Characters → decimal codes
Enter standard ASCII characters with code values from 0 through 127.
Try:
✓ Decimal Codes
Decimal ASCII character codes in original order
Characters 0
ASCII Codes 0
Code Range 0–127
Character mapping:

What Is an ASCII to Decimal Converter?

An ASCII to decimal converter changes text characters into their corresponding decimal ASCII code values. ASCII, short for American Standard Code for Information Interchange, assigns a numerical code to each supported character.

For example, uppercase A has decimal ASCII code 65, lowercase a has code 97, digit 0 has code 48, and a normal space has code 32.

BinaryCon reads the text character by character and outputs each decimal code in the same order, making it easy to inspect how ordinary text is represented numerically.

ASCII character

A human-readable symbol such as A, 5, ?, space, or lowercase z.

Decimal code

The numeric value assigned to that character in the ASCII standard.

How to Use the ASCII to Decimal Converter

Enter ASCII text

Type one character, a word, a sentence, numbers, spaces, or punctuation.

Convert the characters

BinaryCon checks each character and reads its ASCII numeric value.

Read the decimal codes

The main result displays the character codes as space-separated decimal values.

Review the mapping

For shorter text, you can see every character mapped individually to its code.

Copy the codes

Copy the result for programming, debugging, encoding exercises, documentation, or another BinaryCon converter.

Worked Example: Convert A to Decimal ASCII

Character: A ASCII assigns uppercase A the decimal code: 65 Therefore: A → 65

Worked Example: Convert ABC to Decimal

Convert each character separately: A → 65
B → 66
C → 67
Final result: ABC → 65 66 67

Example: Convert Hello to ASCII Decimal

Character Decimal ASCII Hex Binary
H724801001000
e1016501100101
l1086C01101100
l1086C01101100
o1116F01101111
Final decimal output: 72 101 108 108 111

Common ASCII Decimal Codes

Character Decimal Hex Description
space3220Space
!3321Exclamation mark
3422Quotation mark
#3523Number sign
04830Digit zero
14931Digit one
95739Digit nine
A6541Uppercase A
Z905AUppercase Z
a9761Lowercase a
z1227ALowercase z
?633FQuestion mark

ASCII Decimal Range

Standard ASCII defines 128 numerical values, from decimal 0 through 127. These values are divided into control characters and printable characters.

Range Meaning
0–31Control characters
32Space
33–47Punctuation and symbols
48–57Digits 0–9
58–64Punctuation and symbols
65–90Uppercase A–Z
91–96Punctuation and symbols
97–122Lowercase a–z
123–126Symbols
127DEL control character

Uppercase A–Z ASCII Decimal Codes

Letter Decimal Letter Decimal
A65N78
B66O79
C67P80
D68Q81
E69R82
F70S83
G71T84
H72U85
I73V86
J74W87
K75X88
L76Y89
M77Z90

Lowercase a–z ASCII Decimal Codes

Letter Decimal Letter Decimal
a97n110
b98o111
c99p112
d100q113
e101r114
f102s115
g103t116
h104u117
i105v118
j106w119
k107x120
l108y121
m109z122

ASCII Digits 0–9 in Decimal

Numeric characters have their own ASCII codes. This is different from their mathematical values.

Character ASCII Decimal Mathematical Value
0480
1491
2502
3513
4524
5535
6546
7557
8568
9579

Why Character “5” Is Decimal 53 in ASCII

When you type the character 5, a computer does not necessarily store the mathematical integer 5. In text, it stores a character code.

Mathematical value: 5 ASCII text character: “5” → 53

This distinction is important in programming because numeric text must often be parsed before mathematical operations are performed.

What Is the ASCII Decimal Code for Space?

A normal space character has ASCII decimal value 32.

Space → 32

So a phrase such as A B contains three ASCII characters:

A → 65
space → 32
B → 66
Result: 65 32 66

ASCII Control Character Decimal Codes

Not every ASCII code produces a visible character. Values 0 through 31 and 127 are control codes.

Control Decimal Common Meaning
NUL0Null
BEL7Bell
BS8Backspace
HT / TAB9Horizontal tab
LF10Line feed
CR13Carriage return
ESC27Escape
DEL127Delete

ASCII Decimal vs Binary vs Hex

The character remains the same regardless of whether its numeric code is written in decimal, binary, hexadecimal, or octal.

Character Decimal Binary Hex
A650100000141
B660100001042
a970110000161
0480011000030
space320010000020
!330010000121

ASCII vs Unicode

ASCII is a small character encoding containing only 128 code values. Unicode defines a much larger character set covering modern languages, mathematical symbols, emoji, and many other characters.

ASCII characters are also represented consistently within common Unicode encodings such as UTF-8. For example, uppercase A remains decimal byte value 65.

Important: this tool targets standard ASCII codes 0–127. Characters outside that range are Unicode characters and should be processed with a Unicode-aware converter.

Why ASCII Decimal Codes Matter

Programming

Character codes are useful for parsing, validation, sorting, transformations, low-level data processing, and debugging.

Networking

Text data transferred as bytes can be inspected through its decimal character values.

Embedded systems

Devices may send or receive characters as numeric byte codes over serial interfaces and other communication channels.

Computer science education

ASCII decimal conversion connects visible text with the numerical data stored and processed by computers.

Common ASCII to Decimal Conversion Mistakes

Confusing text digits with numeric values

Character “7” has ASCII decimal value 55, not mathematical value 7.

Ignoring spaces

A space is a character and has decimal ASCII code 32.

Assuming lowercase and uppercase letters have the same code

Uppercase A is 65, while lowercase a is 97.

Treating every Unicode symbol as ASCII

Standard ASCII includes only code values 0 through 127.

Related BinaryCon Tools

Convert ASCII text into binary, hexadecimal, or octal, reverse decimal codes back to text, or continue with other encoding tools.

ASCII to Decimal Converter FAQs

How do you convert ASCII to decimal?

Look up the ASCII numeric code assigned to each character. For example, uppercase A has ASCII code 65, B is 66, and lowercase a is 97. For text containing multiple characters, convert them in their original order.

What is A in ASCII decimal?

Uppercase A has ASCII decimal code 65.

What is lowercase a in decimal ASCII?

Lowercase a has ASCII decimal code 97.

What is ABC in ASCII decimal?

A is 65, B is 66, and C is 67. Therefore ABC → 65 66 67.

What is Hello in ASCII decimal?

Hello becomes 72 101 108 108 111.

What is a space in ASCII decimal?

A normal space character has ASCII decimal value 32.

What is the ASCII decimal code for 0?

Text character “0” has ASCII decimal code 48.

What is the ASCII decimal code for 9?

Text character “9” has ASCII decimal code 57.

Why is character 5 ASCII code 53?

ASCII assigns consecutive values 48 through 57 to digit characters 0 through 9. Since 5 is the sixth digit in that sequence starting from 0, its code is 53.

What are the decimal ASCII codes for A to Z?

Uppercase English letters occupy the consecutive decimal range 65 through 90.

What are the ASCII decimal codes for a to z?

Lowercase English letters occupy decimal values 97 through 122.

What is ASCII decimal 10?

Decimal ASCII code 10 is the line feed control character, commonly used as part of a newline representation.

What is ASCII decimal 13?

Decimal code 13 represents carriage return, commonly abbreviated CR.

What is the highest standard ASCII decimal code?

Standard ASCII ranges from 0 through 127. Code 127 is DEL.

Can this converter process a full sentence?

Yes. Every ASCII character in the sentence, including spaces and punctuation, is converted independently to its decimal code.

Does this tool convert emoji to decimal?

No. Emoji are Unicode characters outside standard ASCII. This tool intentionally validates the ASCII range from 0 through 127.

Convert ASCII Text to Decimal Codes Instantly

Use BinaryCon to convert text characters into decimal ASCII codes, inspect character mappings, verify common ASCII values, and use free encoding tools without registration.

Scroll to Top