Decode a Base64 encoded string back to its original text representation.
Code
Utilitiesatob(input);Parameters
The Base64 encoded string to decode.
Browser·fetch() may be limited by CORS
More JavaScript Snippets
Base64 to Bytes
Convert a base64 encoded string to a byte array for binary data processing.
Binary to String
Convert a binary string representation to human-readable text.
Bytes to Base64
Convert a byte array to a base64 encoded string for safe text transmission.
Bytes to String
Convert a byte array to a UTF-8 encoded string using TextDecoder.
Decode URL
Decode a URL-encoded string back to its original form.
Encode Base64
Encode a string to Base64 format for safe transmission in URLs and APIs.