Skip to content

Instantly share code, notes, and snippets.

@un4ckn0wl3z
Created February 27, 2024 09:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save un4ckn0wl3z/593eb9532a1999008642eb0ed79deb69 to your computer and use it in GitHub Desktop.
Save un4ckn0wl3z/593eb9532a1999008642eb0ed79deb69 to your computer and use it in GitHub Desktop.
Decimal (base 10) Binary (base 2) Hexadecimal (aka "Hex") (base 16)
00 0000b 0x00
01 0001b 0x01
02 0010b 0x02
03 0011b 0x03
04 0100b 0x04
05 0101b 0x05
06 0110b 0x06
07 0111b 0x07
08 1000b 0x08
09 1001b 0x09
10 1010b 0x0A
11 1011b 0x0B
12 1100b 0x0C
13 1101b 0x0D
14 1110b 0x0E
15 1111b 0x0F
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment