简体   繁体   中英

Printing a utf-8 character to console

I'm trying to print a utf-8 character to console.

Isn't this supposed to work?

在此输入图像描述

The former statement prints the value as bytes while the latter statement uses a string value. Changing it to bytes will give you the required output.

>>> b'\xc3\x91'.decode()
>>> 'Ñ'

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM