Paste in some unicode text that appears to be broken and this tool will use the ftfy Python library to try and fix it.
s = 'Â\x84Handwerk bringt dich überall hinÂ\x93: Von der YOU bis nach Monaco' s = s.encode('latin-1') s = s.decode('utf-8') s = s.encode('latin-1') s = s.decode('windows-1252') print(s)
Web app source code on GitHub