Command description
URL-encode the content and output a percent-encoded string.
| input parameters | Input parameter type | Description |
|---|
| Content | any | Content to URL-encode |
Command Output Parameters
| Output parameters | Output parameter type | Description |
|---|
| Encoded Content | str | URL encoding results |
AI Workflow Generation Notes
- Byte input is percent-encoded directly.
- Other input is converted to a string and encoded as UTF-8 before percent-encoding.
- URL component encoding is used, so reserved characters such as
/, ?, &, =, and : are encoded by default.
- Use this command when placing arbitrary text in URL query parameters, form fields, or request parameters.