Convert Base64 to Hex ViceVersa


Nothing SPACE :(Colon)

Try Other Convertor


Your Support Matters!

Instead of directly asking for donations, I'm thrilled to offer you all nine of my books for just $9 on leanpub By grabbing this bundle you not only help cover my coffee, beer, and Amazon bills but also play a crucial role in advancing and refining this project. Your contribution is indispensable, and I'm genuinely grateful for your involvement in this journey!

Any private key value that you enter or we generate is not stored on this site, this tool is provided via an HTTPS URL to ensure that private keys cannot be stolen, for extra security run this software on your network, no cloud dependency



PHP Example base64 to Hex

<?php
$string1 = 'SGVsbG8gOGd3aWZpLm9yZw==';
$binary = base64_decode($string1);
$hex = bin2hex($binary);
echo $hex;
?>

Python example base64 to hex

>>> import base64
>>> base64.b64decode('SGVsbG8gOGd3aWZpLm9yZw==').encode('hex')
'48656c6c6f203867776966692e6f7267'

Hext to Base64

$ echo "48656c6c6f203867776966692e6f7267" | xxd -r -p | base64
SGVsbG8gOGd3aWZpLm9yZw==