In my scraping project I encountered a data point containing a string in the following form
string = "d%61b%69a%5f%62%65%79@yaho%6f.fr"
target_string = dabia_bey@yahoo.fr
What encoding change should I do to wrongly encoded strings? How can I scrape these broken strings correctly?
Thank you