mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-06-07 03:35:35 +00:00
9 lines
254 B
Python
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")
|