python-ftfy icon indicating copy to clipboard operation
python-ftfy copied to clipboard

german umlaut not correctly fixed

Open forty875 opened this issue 3 years ago • 0 comments

German umlaut example:

print(ftfy.fix_text('ß'))
print(ftfy.fix_text('Ü'))
print(ftfy.fix_text('ü'))
print(ftfy.fix_text('Ö'))
print(ftfy.fix_text('ö'))
print(ftfy.fix_text('Ä'))
print(ftfy.fix_text('ä'))
print(ftfy.fix_text('RUF MICH ZURÜCK.'))

Output:

ß
Ü
ü
Ö
ö
Ä
ä
RUF MICH ZURÜCK.

The german umlaut upper Ü Ãœ is not correctly fixed...

forty875 avatar Mar 03 '22 00:03 forty875