运行 ❯
获取您的
自己的 Python
服务器
×
更改方向
更改主题,深色/浅色
前往 Spaces
txt = "My name is St�le" print(txt.encode(encoding="ascii",errors="backslashreplace")) print(txt.encode(encoding="ascii",errors="ignore")) print(txt.encode(encoding="ascii",errors="namereplace")) print(txt.encode(encoding="ascii",errors="replace")) print(txt.encode(encoding="ascii",errors="xmlcharrefreplace"))
b'我的名字是 St\\xe5le'
b'我的名字是 Stle'
b'我的名字是 St\\N{LATIN SMALL LETTER A WITH RING ABOVE}le'
b'我的名字是 St?le'
b'我的名字是 St�le'