Decode URL

Decode a URL-encoded string back to its original form.

Code

Utilities
from urllib.parse import unquote
return unquote(str)

Parameters

The URL-encoded string to decode.

Server

More Python Snippets