ASCII Converter
Convert text to ASCII codes and ASCII codes to text.
Format:
Separator:
Code Examples
// Text to ASCII array
const text = "Hello";
const codes = [...text].map(c => c.charCodeAt(0));
// [72, 101, 108, 108, 111]
// ASCII array to text
String.fromCharCode(...codes); // "Hello"Frequently Asked Questions
How do I convert text to ASCII?
Each character has an ASCII code. 'A' = 65, 'a' = 97, '0' = 48, space = 32. Use the converter to see codes for any text.
Related Tools
Binary Translator
Translate text to binary and binary code back to readable text using UTF-8 bytes.
Text to Binary Converter
Convert plain text into 8-bit binary bytes instantly.
Binary to Text Converter
Decode binary byte groups into readable UTF-8 text instantly.
Unicode Converter
Convert text to Unicode code points and vice versa.