Simply input your data and click the "Decode" button.
Copy to clipboard(output)
Input :
MTYwMjM
Output:
16023
Code PHP - base64_decode():
<?php
$str = 'MTYwMjM';
echo base64_decode($str);
?>
Code Python - base64.b64decode() :
<<< import base64
<<< encoded = 'MTYwMjM'
<<< data = base64.b64decode(encoded)
<<< data
Code JavaScript - atob() :
atob('MTYwMjM');
Code C# - System.Convert.FromBase64String() :
string base64Encoded = "MTYwMjM";
byte[] data = System.Convert.FromBase64String(base64Encoded);
string base64Decoded = System.Text.ASCIIEncoding.ASCII.GetString(data);
Home Page Base64Decode List Privacy Policy About Us Contact
This website uses cookies to enhance your experience, personalize content and ads, and analyze our traffic.
©2025 Design by base64decodeonl.com