Advertisement
pushrbx

ASCII code for characters

Feb 17th, 2014
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. 01000001 // ASCII code of uppercase letter 'A'..'Z' is 0x41..0x5A
  2. 01100001 // ASCII code of lowercase letter 'a'..'z' is 0x61..0x7A
  3.  
  4. 01111010 - z
  5. 01011010 - Z
  6.  
  7.  
  8. http://stackoverflow.com/questions/21465811/x86-assembly-converting-lower-case-to-uppercase
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement