URL Decoder

Decode percent-encoded URLs and query strings back to readable text.

Encoded URL Input

Decoded Output

Hello World! Special chars: @#$%^&*()

Common Encoded Characters

%20 = Space
%21 = !
%40 = @
%23 = #
%24 = $
%26 = &
%2B = +
%3D = =

Tip: Use decodeURIComponent for query parameters and decodeURI for complete URLs where you want to preserve the URL structure characters.