avian2 / unidecode

ASCII transliterations of Unicode text - GitHub mirror
https://pypi.python.org/pypi/Unidecode
GNU General Public License v2.0
516 stars 62 forks source link

Support transforming ℉ into something #94

Open circuitmike opened 6 months ago

circuitmike commented 6 months ago

I'd like to see unidecode turn ℉ into something else, although I'm not sure what the best option for replacing the degree symbol is. degF maybe? Just F?

jwilk commented 5 months ago
>>> import unidecode
>>> unidecode.unidecode('°F')
'degF'

So it would make sense to decode as degF too.