Convert

Convert HEX to RGB — Free Online Color Converter

HEX (#RRGGBB) is the most common color format in web design. RGB (red, green, blue) values range from 0-255 per channel and are used in CSS rgb() functions.

Conversion Formula

Split #RRGGBB into pairs: RR = red, GG = green, BB = blue. Convert each hex pair to decimal. Example: #FF5733 → rgb(255, 87, 51).

CSS Output

rgb(255, 87, 51) or rgba(255, 87, 51, 1) for opaque colors.

Frequently Asked Questions

Does HEX include alpha?

8-digit HEX (#RRGGBBAA) includes alpha. 6-digit HEX is fully opaque.