URLDecode
URLDecode (inputStr)
The URLDecode function returns a percent-decoded copy of the percent-encoded string inputStr. It is unlikely that you will need to use this function; it is provided for completeness.
For an explanation of percent-encoding, see Percent Encoding.
Example
String theURL = "http://google.com?key1=35%25%20larger"
theURL = URLDecode(theURL)
Print theURL
http://google.com?key1=35% larger