Base64 decoder online - decrypt base64

Base64 decoder - decrypt Base64 form

Output the decrypted data to a file.

     Enter Base64 text data and click "decode". This simple online base64 decoder works with Base64 text data. You can decrypt the data to text.

     If you want to decrypt the data to binary form and download as a file, convert the data from some charactet set, please try a little bit complex Base64 decoder and encoder online

Privacy notes for the Base64 decoder/decryptor

* We do not store any data posted to this form.
* We do not log nor monitor the data.
* The base64 encoded and dectypted data are stored only memory and converted by next simple base64 VBS code.

Source code of the Base64 decryptor

If Form("source").Length = 0 Then 'no data
  Message = "The source data are empty"
Else
  'read the source data for form
  FormData_source = Form("source")
  
  'get the source data as binary data
  ByteArray.ByteArray = Form("source").ByteArray
  
  'convert the source to Base64 and to unicode string
  FormData_base64 = ByteArray.Base64.String
End If
WUtils.com