I need to convert a string into a different encoding which I believe is Windows1252, not sure though.
The characters would be:
%E4 = ä
%F6 = ö
I tried urlencode, quote, quote_plus, encode... nothing did the trick.
Maybe I am using the wrong encoding?
'mausebär'.encode('Windows-1252')
Should become:
'mauseb%e4r'
Any ideas how to encode with the same characterset?