I trying to understand unicode and byte representation using hex. So in python i tried the below.
> 'I am a string Ņ'.encode('utf-8')
> b'I am a string \xc5\x85'
Here i see \xc5\x85
whats the meaning of this representation. The actul unicode for Ņ
is \u0145
How \u0145 = \xc5\x85