Guest User

Untitled

a guest
May 26th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.07 KB | None | 0 0
  1. >>> "%X"%ord(u"你")
  2. '4F60'
  3.  
  4. # or
  5. >>> "%X"%ord("你".decode('utf8'))
  6. '4F60'
Add Comment
Please, Sign In to add comment