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 = 'Beta Haber: HÃ\x84±rsÃ\x84±zÃ\x84± BÃ\x83¼yÃ\x83¼ Korkuttu' s = s.encode('latin-1') s = s.decode('utf-8') s = s.encode('latin-1') s = s.decode('utf-8') print(s)
Web app source code on GitHub