Hex Calculator & Color
Convert hex to decimal, RGB color, ASCII codes, or perform hex arithmetic. Useful for programming and web color work.
Inputs
Decimal
โ
Binary
โ
Octal
โ
RGB color
โ
HSL color
โ
About Hex Calculator & Color
Web hex colors
#RRGGBB. Each pair is 0-255 brightness. #000000 black, #FFFFFF white, #FF0000 pure red. Modern CSS also supports #RRGGBBAA with alpha and shorthand #RGB.
When to use HSL
HSL (Hue, Saturation, Lightness) is more intuitive for designers โ "more red" is just shifting Hue. RGB is what monitors actually output. Designers prototype in HSL, ship in RGB.
0x prefix
0x is a C/Java/JavaScript prefix for hex literals: 0xFF = 255. # is the CSS prefix for hex colors. They mean the same thing but contexts differ.