cyberchef_url_encode
Convert plaintext into percent-encoded format for safe URL transmission. Optionally encode all characters with RFC 3986 standards.
Instructions
Encodes reserved and unsafe characters in a string into standard percent-encoded format (%XX) for safe transmission in URLs.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| input | Yes | The plaintext string to URL encode. | |
| encodeAll | No | Optional boolean. If true, encodes all characters including alphanumerics into percent format. Default is false (standard RFC 3986 encoding). |