Hex to RGB Converter
Type a hex code or RGB values — the converter updates in both directions and shows HSL and CMYK for free. Click any result to copy it.
Converted values
- HEX
- RGB
- HSL
- CMYK
Need a background instead? Paste the color into the solid color background generator.
Common hex to RGB conversions
Frequently Asked Questions
How do I convert hex to RGB manually?
Split the six-digit hex into three pairs — e.g. #4F46E5 becomes 4F, 46, E5 — then convert each pair from hexadecimal to decimal: 4F = 79, 46 = 70, E5 = 229. So #4F46E5 is rgb(79, 70, 229).
Is hex the same as RGB?
They describe exactly the same color in different notations. #FF0000 and rgb(255, 0, 0) are identical — hex is just base-16 shorthand for the same three 0–255 channel values.
What is a 3-digit hex code?
Shorthand where each digit is doubled: #F0B expands to #FF00BB. This converter accepts both 3-digit and 6-digit hex codes.
When should I use HSL instead?
HSL (hue, saturation, lightness) is easier for humans to reason about — 'same hue, a bit lighter' is just changing L. Use it when building shades and tints or design tokens.