โ— Shell
clean mode source โ†—

Python Language Tutorial => Encoding and decoding

Example

Always encode from unicode to bytes. In this direction, you get to choose the encoding.

>>> u'๐Ÿ'.encode('utf-8')
'\xf0\x9f\x90\x8d'

The other way is to decode from bytes to unicode. In this direction, you have to know what the encoding is.

>>> b'\xf0\x9f\x90\x8d'.decode('utf-8')
u'\U0001f40d'

Got any Python Language Question?

pdf PDF - Download Python Language for free



Previous Next