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.