Done

๐Ÿ’ป Text to ASCII Converter

Convert text to ASCII decimal, hexadecimal, binary, and octal codes โ€” and decode them back. Character breakdown, full ASCII table, bulk convert.

Converter
Text
ASCII Codes
Decimal
Hexadecimal
Binary
Octal
All Formats
Input Text
Chars: 0 ยท Words: 0 Size: 0 B
Separator
Output
Chars: 0 Size: 0 B
Conversion Log
; TechOreo โ€” Text to ASCII Converter
; Decimal ยท Hex ยท Binary ยท Octal
; โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€
; Enter text or ASCII codes to begin
ASCII Table (Printable)
CharDecHexOctBin
Keyboard Shortcuts
Ctrl+โ†ตConvert
Alt+CCopy output
Alt+SSwitch direction
Alt+DDownload output
Alt+XClear all
What is ASCII?

ASCII (American Standard Code for Information Interchange) is a character encoding standard using 7 bits to represent 128 characters:

โ€ข 0โ€“31: Control characters (non-printable)
โ€ข 32: Space
โ€ข 33โ€“47: Punctuation & symbols
โ€ข 48โ€“57: Digits 0-9
โ€ข 65โ€“90: Uppercase A-Z
โ€ข 97โ€“122: Lowercase a-z
โ€ข 127: DEL (delete)
Privacy
๐Ÿ”’ 100% Client-Side
All conversions run in your browser. Nothing sent to any server.

About Text to ASCII Conversion

Why Convert to ASCII?

ASCII codes are fundamental in programming, data transmission, and computer science. Converting text to numeric codes helps with debugging, encoding, protocol analysis, and understanding how computers store text.

Number Bases

Decimal (base-10) is human-readable. Hexadecimal (base-16) is compact and common in programming. Binary (base-2) shows actual bit patterns. Octal (base-8) was used in early computing.

Extended ASCII & Unicode

Standard ASCII covers 0โ€“127 (7-bit). Extended ASCII uses 128โ€“255 (8-bit). Unicode extends far beyond, covering emojis, CJK characters, and more โ€” this tool handles the full Unicode range.

Common Values

'A' = 65, 'a' = 97, '0' = 48, Space = 32, Newline = 10. The difference between uppercase and lowercase is always 32 โ€” a classic computer science trick.