aquaballoon

Hex Decimal Binary

Oct 10th, 2014
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.29 KB | None | 0 0
  1. Binary:
  2. 8 bit = 1 byte = 1 character
  3. (00000000 ~ 11111111)
  4.  
  5. Decimal:
  6. 1 byte max number value(11111111) = 255
  7. 1 byte max number value(00000000) = 0
  8.  
  9. Hex:
  10. decimal 0 = 0
  11. decimal 255 = FF
  12.  
  13. 8 bit = 1 byte max number value(11111111) = 255 = FF
  14. 8 bit = 1 byte max number value(00000000) = 0 = 0
Advertisement
Add Comment
Please, Sign In to add comment