Skip to content

Instantly share code, notes, and snippets.

@yvan-sraka
Last active November 6, 2017 17:27
Show Gist options
  • Save yvan-sraka/33e311701260763bce84efcc95475d39 to your computer and use it in GitHub Desktop.
Save yvan-sraka/33e311701260763bce84efcc95475d39 to your computer and use it in GitHub Desktop.
Explain how binary numbers works
  • 0000 0
  • 0001 1
  • 0010 2
  • 0011 3
  • 0100 4
  • 0101 5
  • 0110 6
  • 0111 7
  • 1000 8
  • 1001 9
  • 1010 A
  • 1011 B
  • 1100 C
  • 1101 D
  • 1110 E
  • 1111 F

#FF00FF

(255, 0, 255)

1111 1111 0000 0000 1111 1111

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment