Python3 unquote URL one-liner
panos March 17, 2021python3 -c 'from urllib.parse import unquote; print(unquote(input("> enter URL to decode: ")))'
Kountanis
python3 -c 'from urllib.parse import unquote; print(unquote(input("> enter URL to decode: ")))'