Tool for returning decoded URL using urldecode() in PHP
Once some URL is encoded, it has to be decoded when sending to output. Encoding and decoding are often used when storing URL’s in databases for further purposes (analysing content of certain web documents), or when linking to other web documents, therefore functions urlencode() and urldecode() always come together, but not in the same stage. Symbols that are encoded include question mark, percent, etc.
urldecode is a PHP function which converts any %## encoding and turns plus symbols into spaces.





