URL Decoder
Undo the obfuscation (Decode) %20 and read the original hidden URL.
Breaking the Mask of Percentage
Many times on an analytical server (like Google Analytics or Apache Logs) the URLs reach us with the structure completely disfigured and instead of accents, ugly codes formed by percentages start popping up (example: `%20` instead of the space and `%C3%A3` instead of ã).
Universal Revealer
Whether it is a simple Query String Search Parameter or a huge API Route, just inject the encoded string into this field. The decoding scans the String (`decodeURIComponent`), replacing the numbers back with accented words (readable UTF-8).