I have a problem, I am trying to get a string to be equal in Python3 and in MySQL, the problem is I expect it should be utf-8 but the problem is it's not the same.
I have this string
station√¶r pc > station√¶r pc
and what I wish now is it should look like this
stationr pc > stationr pc
and I have tried to use bytes(string, 'utf-8').decode('utf-8') and a lots of other things.
I hope one here can help me to strip all the weird characters out of my strings so I can use it better, the problem is the data coming from external files and I can't control the encoding.