BinaryCon Binary Converter

Text → ASCII

Result

Text → ASCII

Convert text to ASCII code points (decimal or hex).

Example: Hello

Definition: Converts each character in the input string to its ASCII numeric code (decimal or hex as selected).

Conversion formula

Text → ASCII code:
Each character maps to an integer code point (0–255 in ASCII). Use the language/encoding ord function.

Example:
'A' → 65
'a' → 97
'0' → 48