<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">from loguru import logger

logger.debug("Happy logging with Loguru!")
logger.debug("æ¸¬è©¦ä¸­æ–‡")

s = '\xe5\x8f\x91\xe7\x94\x9f\xe9\x94\x99\xe8\xaf\xaf'
ss = s.encode('raw_unicode_escape')
print(type(ss))
print(ss)

sss = ss.decode()
print(sss)
</pre></body></html>