Convert Base64 to Hex ViceVersa


Nothing SPACE :(Colon)

Try Other Convertor


Thanks for using this software, for Cofee/Beer/Amazon bill and further development of this project please Share.

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

Asking for donation sound bad to me, so i'm raising fund from by offering all my Nine book for just $9



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==
The Modern Cryptography Book

Kubernetes for DevOps

Cryptography for Python Developers

Cryptography for JavaScript Developers

Go lang Cryptography for Developers