What it can do
- Decode percent escapes
- Treat plus signs as spaces
- Keep parameter separators visible
How the recipe works
URL Decode
Convert each percent-encoded byte back to text.
Demonstration
Sample input
name=Serialize%20Help&mode=local%2DfirstExpected result
name=Serialize Help&mode=local-firstWhen to use it
- Web debugging
- Log review
- Understanding query parameters
Adapt it
Use Parse URI after decoding only when you want the full URL split into structural fields.
Source and verification
Adapted from TryHackMe: CyberChef — The Basics. The explanation and sample are written for Serialize, use synthetic or documentation-safe data, and are checked against the current operation catalogue. The workflow runs locally without an external API call.