BinaryCon Binary Converter

ASCII → Hexadecimal

Result

About this tool

Convert plain text to its ASCII hex representation. Useful when inspecting byte-level data or constructing test vectors.

Example

Input: A
Output: 41

Notes

  • Output is space-separated hex bytes.

ASCII → Hex

Convert ASCII characters to hexadecimal bytes.

Example: Hi

Definition: Encodes each ASCII character into its hexadecimal byte representation.

Conversion

ASCII → Hex: map each character to its byte value and format as two-digit uppercase hex bytes.
Example: 'A' → 65 → 41