url_decode
Decode a percent-encoded URL component into plain text when reading query parameters, path segments, or form values that contain escaped characters.
Use when:
Decode this percent-encoded URL component
Convert %20-style escapes back to plain text
Recover the original string from an encoded query parameter
Do not use when:
Percent-encode text for a URL (use url_encode)
Decode Base64 payloads (use base64_decode)
Parse HTML entities that are not URL percent-encoding
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| value | Yes |