url
decode(string data, string encoding="UTF-8")
Decodes a application/x-www-form-urlencoded string using a specific encoding scheme. The supplied encoding is used to determine what characters are represented by any consecutive sequences of the form "%xy".
Example
DataSonnet map:
ds.url.decode('Hello+World')
Result
"Hello World"