Format Converter
Convert between multiple data formats including ASCII text, hexadecimal, binary, decimal, and Base64. Perfect for CTF challenges that involve data encoding and manipulation.
Select Input Format
Choose the format of your input data
Input
Enter text
Select Output Format
Choose the format to convert your data to
Output
Converted hexadecimal result
Converted result will appear here...
Format Information
Text (ASCII)
Human-readable text using the ASCII character set. Each character is represented by a byte value from 0-127.
Hexadecimal
Base-16 representation where each byte is represented by two hex digits (00-FF). Commonly used in programming and CTF challenges.
Binary
Base-2 representation using only 0s and 1s. Each byte is represented as 8 bits.
Decimal
Base-10 representation where each byte is a number from 0-255.
Base64
Encoding scheme that represents binary data using a set of 64 printable ASCII characters. Commonly used for transferring binary data over text-based protocols.