RGB to HEX converter
RGB values become hex by writing each channel in base 16. rgb(255, 107, 53) packs into #FF6B35, the form CSS and design tools exchange most.
How this works
- 1 Paste or type your RGB value; the tool reads it as you type.
- 2 The HEX value updates live, along with every other format.
- 3 Click any code to copy it, or use bulk mode for a whole list.
- HEX
- #e08b3d
- RGB
- rgb(224, 139, 61)
- RGBA
- rgba(224, 139, 61, 1)
- HSL
- hsl(29, 72%, 56%)
- HSV
- hsv(29, 73%, 88%)
- CMYK
- cmyk(0%, 38%, 73%, 12%)
- LAB
- lab(66.0 28.7 54.1)
- OKLCH
- oklch(71.2% 0.138 59.8)
Guide
When you need HEX instead of RGB
Hex is the lingua franca: shorter to paste, universally supported, and what most style guides and brand documents expect.
FAQ
FAQs
Why does my RGB have decimals or percentages?
CSS allows rgb(100% 42% 21%) and newer syntax without commas. Paste any of these forms above; we normalize them all to the same hex.
Does converting lose quality?
No. RGB and hex are two spellings of identical data, so conversion is lossless in both directions.
Related: HEX to RGB · HEX to HSL · HSL to HEX · RGB to HSL · every format at once