ftfy - fix unicode that's broken in various ways

Paste in some unicode text that appears to be broken and this tool will use the ftfy Python library to try and fix it.

import ftfy.bad_codecs  # enables sloppy- codecs
s = 'ââ\x82¬Å\x93If you can read this, congratulationsââ\x82¬â\x80\x9dthe archive youââ\x82¬â\x84¢re using still knows about the mouseover textââ\x82¬Â\x9d!'
s = s.encode('latin-1')
s = s.decode('utf-8')
s = s.encode('sloppy-windows-1252')
s = s.decode('utf-8')
print(s)

Examples

Web app source code on GitHub