HEX to RGB Converter
ColorA HEX to RGB converter changes a #RRGGBB color code into red, green, and blue numeric values.
What is it
HEX color uses six hexadecimal digits for red, green, and blue channels. RGB expresses each channel as a number from 0 to 255.
RGB = parseInt(HEX channel, 16)
How to use
- 1Enter a HEX color code.
- 2Press convert.
- 3Check RGB and HSL values.
Reference
| HEX | RGB |
|---|---|
| #FFFFFF | rgb(255 255 255) |
| #000000 | rgb(0 0 0) |
Sources & standards
- ECMAScript Language Specification - Ecma International
FAQ
What is #2f80ed in RGB?
#2f80ed is rgb(47 128 237).
Is HEX input sent to a server?
No. This tool runs in your browser and does not send input to a server.