Skip to main content

URL Encode

Command description

URL-encode the content and output a percent-encoded string.

Command Input Parameters

input parametersInput parameter typeDescription
ContentanyContent to URL-encode

Command Output Parameters

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