Tap the bits on and off
Loadingβ¦
Streak
0
0
Best
0
0
Binary & Hex Tips
π‘ It's Just On and Off
Computers store everything using tiny switches that are either on (1) or off (0) β a number written using only 0s and 1s is called binary.
π Each Place Doubles
In our normal numbers, each place is worth 10 times the one before (1, 10, 100...). In binary, each place just doubles: 1, 2, 4, 8, 16, 32, 64, 128.
π« Hex: a Shortcut for 4 Bits
Hexadecimal (hex) counts in 16s instead of 10s, using 0-9 then A-F for 10-15. One hex digit always represents exactly 4 bits β that's why the Bit Builder above splits into two groups of 4, one for each hex digit.
π¨ Hex Colors
Website colors are written in hex, like #FF0000 for red β two hex digits each for how much red, green, and blue to mix in.