Skip to content

Decode URL parameters

Restore percent-encoded characters and plus-as-space form values.

Install in Serialize

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%2Dfirst

Expected result

name=Serialize Help&mode=local-first

When 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.

Navigation

Type to search…

↑↓ navigate↵ selectEsc close