From hex dumps to Base64 payloads
Hexadecimal is how binary data usually appears in debugging output — xxd,
Wireshark captures, register dumps, hash digests, database BYTEA columns. Base64
is how the same data usually needs to be delivered — JSON payloads, HTTP headers, Kubernetes
secrets, cryptographic key material. This converter bridges the two instantly and locally.
Input is cleaned automatically: whitespace, newlines, colons (MAC-address style), commas, and
0x prefixes are all ignored, so you can paste hex in whatever shape you found it.
Need the opposite view? Base64 to Hex shows the raw bytes behind any Base64 string.