Decimal to Base64 Converter
Encode a decimal byte array (0-255 per value) to a Base64 string.
13 bytes parsed
Base64 output
How decimal-to-Base64 conversion works
Base64 encodes raw bytes as printable ASCII text using 64 characters (A–Z, a–z, 0–9, + and /), padded with = to a multiple of 4 characters. Each group of 3 input bytes becomes 4 Base64 characters, which is why encoded output is roughly 33% larger than the original data.
This tool treats each number you enter as one byte (0-255), builds the raw byte sequence, then Base64-encodes it. For example, the decimal bytes 72, 101, 108, 108, 111 (the ASCII codes for "Hello") encode to SGVsbG8=. All conversion happens 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.