Endian-ness , UTF-8 8 ( 8 ). .
, . A , , 0x41. , , , . .
GBK ; 1 , UTF-8, .
UCS-2 ( , UTF-16), , 2- . 16 , 16 . 2 , , , . , endianess, 2 . little-endianess, , . 0x4F 0x60 .
, python , endian UTF-16 ; endianess, ( ):
>>> '`O\n\x00'.decode('utf-16')
u'\u4f60\n'
>>> '`O\n\x00'.decode('utf-16-le')
u'\u4f60\n'
>>> 'O`\x00\n'.decode('utf-16-be')
u'\u4f60\n'
big-endian.