Skip to main content

URL Decode

Command description

Decodes percent-encoded URL content and returns the restored string.

Command Input Parameters

input parametersInput parameter typeDescription
Content to DecodeanyContent to URL-decode, usually a string containing %xx sequences

Command Output Parameters

Output parametersOutput parameter typeDescription
Decoded ContentstrURL 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.