swingmusic/app/utils/unicode.py
mungai-njoroge f2addf4d0f rewrite api/artist.py to remove artist cache
+ remove processing taylor's version
2023-09-23 18:57:19 +03:00

9 lines
254 B
Python

def handle_unicode(string: str):
"""
Try resolving unicode characters, else escape them.
"""
return string.encode("utf-16", "replace").decode("utf-16")
# try:
# except:
# return string.encode("unicode_escape").decode("utf-8")