cyberchef_from_base64
Decode Base64 strings into readable UTF-8 text, including URL-safe variants. Strips whitespace and handles padding automatically.
Instructions
Decodes standard RFC 4648 or URL-safe Base64 encoded strings into readable UTF-8 plaintext. Automatically strips whitespace and handles padding.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| input | Yes | The Base64 encoded string to decode (e.g., 'SGVsbG8gV29ybGQ='). | |
| urlSafe | No | Optional boolean. Set to true if the input uses URL-safe Base64 encoding with '-' and '_' instead of '+' and '/'. |