How to transform this unicode hex string ?
u'\x95\x93\xdfn\xe3D\x18\xc5q\xebv\xb3\xb4\xbb\x80\xb4H+\x84P\x05W,$\xfe......'
To real this hex
'\x95\x93\xdf\x6e\xe3\x44\x18\xc5\x71\xeb...'
How to transform this unicode hex string ?
u'\x95\x93\xdfn\xe3D\x18\xc5q\xebv\xb3\xb4\xbb\x80\xb4H+\x84P\x05W,$\xfe......'
To real this hex
'\x95\x93\xdf\x6e\xe3\x44\x18\xc5\x71\xeb...'
You could try
s = u'\x95\x93\xdfn\xe3D\x18\xc5q\xebv\xb3\xb4\xbb\x80\xb4H+\x84P\x05W,$'
s.encode('latin')
# b'\x95\x93\xdfn\xe3D\x18\xc5q\xebv\xb3\xb4\xbb\x80\xb4H+\x84P\x05W,$'