IntellureIntellure
  • Pricing
  • How it works
  • Tools
  • Blogs
  • FAQ
  • Contact
Get started
PricingHow it worksToolsBlogsFAQContactGet started
IntellureIntellure

Digital tools and insights, built for the modern web. Free, fast, and private.

Products

AI EmployeeFree ToolsBlog

Company

AboutContactPrivacy PolicyTerms of Service
© 2026 Intellure. All rights reserved.Made with care for the internet.
Home/Developer Tools/Text to ASCII Code Converter
📟

Text to ASCII Code Converter

Convert text to ASCII and Unicode codes, or decode codes back to text. Works with special characters.

Text to Code


Code to Text

Enter codes separated by spaces or commas (e.g., 72 101 108 108 111)

Quick ASCII Reference

Space: 32
A-Z: 65-90
a-z: 97-122
0-9: 48-57
Enter: 10
Tab: 9

About Text to ASCII Code Converter

Free text to ASCII and Unicode code converter that converts any text to ASCII/Unicode numeric codes and vice versa. Paste or type your text to see each character's decimal, hexadecimal, and octal code values. Works with standard ASCII characters (0-127), extended ASCII (128-255), and full Unicode (0-1,114,111). Perfect for programmers debugging character encoding, web developers working with character codes, educators teaching computer science, and anyone needing to understand or verify character encodings. Copy individual character codes or the entire conversion result. All processing happens locally in your browser with no data transmitted to any server.

Printable ASCII Table (32–126)

The table below shows all 95 printable ASCII characters with their decimal, hexadecimal, and octal values. These are the characters you encounter most often in programming, web development, and data processing.

CharDecHexOctCharDecHexOct
Space322040P8050120
!332141Q8151121
"342242R8252122
#352343S8353123
$362444T8454124
%372545U8555125
&382646V8656126
'392747W8757127
(402850X8858130
)412951Y8959131
*422A52Z905A132
+432B53[915B133
,442C54\925C134
-452D55]935D135
.462E56^945E136
/472F57_955F137
0483060`9660140
1493161a9761141
2503262b9862142
3513363c9963143
4523464d10064144
5533565e10165145
6543666f10266146
7553767g10367147
8563870h10468150
9573971i10569151
:583A72j1066A152
;593B73k1076B153
<603C74l1086C154
=613D75m1096D155
>623E76n1106E156
?633F77o1116F157
@6440100p11270160
A6541101q11371161
B6642102r11472162
C6743103s11573163
D6844104t11674164
E6945105u11775165
F7046106v11876166
G7147107w11977167
H7248110x12078170
I7349111y12179171
J744A112z1227A172
K754B113{1237B173
L764C114|1247C174
M774D115}1257D175
N784E116~1267E176
O794F117

Common ASCII Code References

Uppercase Letters

A–Z occupy codes 65–90. To convert uppercase to lowercase, add 32 to the ASCII value. For example, A (65) becomes a (97).

Lowercase Letters

a–z occupy codes 97–122. Subtract 32 from any lowercase letter to get its uppercase equivalent. This 32-offset is one of the most well-known ASCII tricks.

Digits 0–9

The digit characters 0–9 have codes 48–57. To convert a digit character to its numeric value, subtract 48. This works in virtually every programming language.

Control Characters

Codes 0–31 and 127 are non-printable control characters. The most common are: newline (10), carriage return (13), tab (9), null (0), and escape (27).

ASCII vs Unicode: Key Differences

FeatureASCIIUnicode (UTF-8)
Character count128 (7-bit) or 256 (extended)Over 1.1 million code points
LanguagesEnglish onlyAll world languages, emoji, symbols
Bytes per character1 byte (fixed)1–4 bytes (variable)
Backward compatible—Yes, first 128 codes identical to ASCII
Common useLegacy systems, simple textWeb (HTML, JSON, APIs), modern apps

Frequently Asked Questions

What is ASCII and how does it work?
ASCII (American Standard Code for Information Exchange) is a character encoding standard that represents text characters using numeric codes. Each character is assigned a unique decimal value from 0 to 127 for standard ASCII. For example, the letter 'A' is 65, space is 32, and newline is 10. Extended ASCII includes values 128-255 for additional characters like accented letters and symbols.
What is the difference between ASCII and Unicode?
ASCII is limited to 128 characters (or 256 with extended ASCII) and primarily covers English letters, digits, and basic symbols. Unicode is a much larger standard supporting over 1.1 million characters, including letters from all world languages, emoji, mathematical symbols, and more. Unicode is backward compatible with ASCII — ASCII characters have the same Unicode code points (0-127).
How do I find the ASCII code for a specific character?
Simply type the character into the text field and the tool displays its ASCII decimal code, hex value, and octal representation. For example, typing 'A' shows decimal 65, hex 41, and octal 101. The tool shows codes for every character including spaces, punctuation, and special characters.
Can I convert from ASCII codes back to text?
Yes. Enter ASCII codes (decimal, hex, or octal values separated by spaces or commas) in the decode field, and the tool converts them back to readable text. For example, entering '72 101 108 108 111' produces 'Hello'.
What characters are included in ASCII?
Standard ASCII (0-127) includes uppercase letters (A-Z, 65-90), lowercase letters (a-z, 97-122), digits (0-9, 48-57), punctuation marks, whitespace characters (space 32, tab 9, newline 10), and control characters (0-31, mostly non-printable). Extended ASCII (128-255) includes accented characters (é, ñ, ü), box drawing characters, and mathematical symbols.
What are hex and octal representations?
Hexadecimal (base-16) represents numbers using 0-9 and A-F. Octal (base-8) uses 0-7. These are alternative ways to represent the same numeric value. For example, decimal 65 ('A') is hex 41 and octal 101. Programmers often use hex for character codes since 8-bit values fit neatly into 2 hex digits (00-FF).
Why would I need to convert text to ASCII codes?
Developers use ASCII code conversion for character encoding validation, debugging encoding issues, creating obfuscated text, analyzing data formats, teaching computer science, working with legacy systems that use character codes, and verifying that specific characters are correctly processed. It is essential for low-level programming and understanding how computers represent text.
Is this text to ASCII converter free?
Yes, completely free with no signup required. Convert text to ASCII/Unicode codes in decimal, hex, and octal formats, or decode codes back to text. All processing happens in your browser — your data is never sent to any server.

Related Tools

{ }

JSON Formatter

Format, validate, and beautify your JSON data with syntax highlighting.

🔐

Base64 Encoder/Decoder

Encode text to Base64 or decode Base64 strings instantly.

.*

Regex Tester

Test and debug regular expressions with real-time matching and highlighting.

🌐

URL Encoder/Decoder

Encode or decode URLs and query parameters.

🆔

UUID Generator

Generate random UUIDs (v4) instantly. Bulk generate and copy.

#️⃣

Hash Generator (SHA-256)

Generate SHA-256, SHA-1, and MD5 hashes from any text instantly.

Browse all 139+ free tools
HUMAN SIDE

Encoding text is easy. Answering every customer by hand is not.

Intellure reads and replies to your customers in plain language across WhatsApp, Instagram, and your website, then follows up and books them. $299 a month.

Let Intellure reply