URL Decode
What this does
Turns %xx sequences and + signs back into readable characters, so a long encoded link becomes plain text you can read.
When to use it
- Understanding what a tracking link or redirect actually points to.
- Reading a query parameter copied from a browser address bar.
- Debugging form submissions in server logs.
Good to know
Some links are encoded twice (%2520). Run the decoder again if you still see percent signs.