Convert between multiple data formats including ASCII text, hexadecimal, binary, decimal, and Base64. Perfect for CTF challenges that involve data encoding and manipulation.
Human-readable text using the ASCII character set. Each character is represented by a byte value from 0-127.
Base-16 representation where each byte is represented by two hex digits (00-FF). Commonly used in programming and CTF challenges.
Base-2 representation using only 0s and 1s. Each byte is represented as 8 bits.
Base-10 representation where each byte is a number from 0-255.
Encoding scheme that represents binary data using a set of 64 printable ASCII characters. Commonly used for transferring binary data over text-based protocols.