Command description
Decodes percent-encoded URL content and returns the restored string.
| input parameters | Input parameter type | Description |
|---|
| Content to Decode | any | Content to URL-decode, usually a string containing %xx sequences |
Command Output Parameters
| Output parameters | Output parameter type | Description |
|---|
| Decoded Content | str | URL decoding results |
AI Workflow Generation Notes
- Byte input is decoded as ASCII first.
- Other input is converted to a string, then its percent-encoded content is decoded as UTF-8.
- Ordinary unencoded characters are left intact; for example
abc%20123 is decoded to abc 123.
- If the input contains illegal UTF-8 percent encoding, a decoding error will be thrown at runtime.