ID EN
Urllib Parse

unquote

Python 3.11

Replace %xx escapes with their single-character equivalent. The optional encoding and errors parameters specify how to decode percent-encoded sequences into Unicode characters, as accepted by the bytes.decode() method.

Syntax

PYTHON
urllib.parse.unquote(string, encoding='utf-8', errors='replace')

See Also

bytes.decode() str bytes