This online Base64 to HEX converter supports multiple formatting options such as colon-separated and 0x-prefixed output.
Quickly convert Base64 to hexadecimal in your browser with no server upload.
This tool allows you to convert Base64 encoded data to hexadecimal (HEX) format with various display options. Base64 is a binary-to-text encoding scheme commonly used to represent binary data in a format that is not affected by text processing systems.
Plain - Simple uppercase hex characters (DEADBEEF)With Dashes - Pairs separated by dashes (DE-AD-BE-EF)With 0x Prefix - Each byte has 0x prefix (0xDE 0xAD 0xBE 0xEF) With Colons - Pairs separated by colons (DE:AD:BE:EF)Lowercase - Simple lowercase hex characters (deadbeef)With Spaces - Pairs separated by spaces (DE AD BE EF)Base64 is a text-based encoding scheme used to represent binary data using ASCII characters. It's commonly used in web development, email attachments, cryptographic operations, and data serialization formats like JSON and XML.
While Base64 is great for safe data transmission, it's not ideal for low-level analysis, debugging, or binary inspection. That’s where HEX (hexadecimal) comes in. HEX offers a more compact and readable view of raw bytes, making it perfect for developers, network engineers, and security analysts.
To convert Base64 to HEX, the process involves two steps:
For example:
Base64: SGVsbG8= → HEX: 48 65 6C 6C 6FOur online Base64 to HEX converter performs this conversion locally in your browser, with options for spacing, prefix styles, case formatting, and more — no data is sent to any server.
Yes, it's completely free with no registration, ads, or usage limits.
No, all decoding and conversion runs locally in your browser. Your data never leaves the page.
Six: Plain, With Dashes, With 0x Prefix, With Colons, Lowercase, and With Spaces. Pick one from the format dropdown.
The tool shows an inline error toast via the browser's atob validation. Fix padding (=) or invalid characters and it will convert instantly.
Yes — use the reverse tool: HEX to Base64 converter.
Standard RFC 4648 Base64 is supported. For URL-safe variants, replace - with + and _ with / before pasting.
Pipe the HEX output into the ASN.1 Viewer & X.509 / PKCS Decoder to parse DER-encoded certificates, CSRs, PKCS#7/CMS envelopes and private keys into a readable tree.
To deepen your understanding of Base64 and hexadecimal encoding, here are curated external resources: