cyberchef_to_base64
Encode text or binary data into standard or URL-safe Base64, with optional padding removal for URLs.
Instructions
Encodes arbitrary text or byte data into standard RFC 4648 or URL-safe Base64 string representation.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| input | Yes | The plaintext string to encode into Base64 format. | |
| urlSafe | No | Optional boolean. Set to true to generate URL-safe Base64 (substitutes '+' with '-' and '/' with '_', omits padding). |