Base64 to Decimal Converter
Decode a Base64 string into its raw bytes, shown as a decimal array.
Drop a .txt file containing Base64, or click to browseReads the file as text and decodes its contents as Base64.
Decimal byte array (13 bytes)
Separator
How Base64 to decimal conversion works
Base64 represents binary data using 64 printable characters, packing three raw bytes into four Base64 characters (6 bits each). To reverse it, this tool decodes the string back into its original bytes with the browser's built-in atob() function, then reads each byte's numeric value (0–255) to build a decimal array — for example, decoding SGk= (the text "Hi") yields the bytes 72, 105. Both standard Base64 and URL-safe Base64 (using - and _ instead of + and /) are accepted, along with missing padding. Everything runs locally in your browser — nothing is uploaded anywhere.
Private & free — this tool runs entirely in your browser.
Recommended: IndieKit — Ship your Next.js startup in days.affiliate
Related Converters tools
JSON to YAML
Convert JSON into clean, readable YAML instantly.
YAML to JSON
Convert YAML configuration into valid JSON.
JSON to CSV
Flatten a JSON array of objects into CSV rows.
CSV to JSON
Parse CSV with headers into a JSON array of objects.
JSON to XML
Convert JSON structures into nested XML markup.
HWB to HEX Converter
Convert an HWB color to HEX.
JSON to SQL
Turn a JSON array of objects into SQL INSERT statements.
CSV to XML
Convert CSV rows into structured XML records.