Convert HEX color codes to RGB format instantly.
Type or paste your HEX color code (with or without #).
Click Convert to transform HEX to RGB.
See the RGB values and color preview.
A HEX to RGB converter translates a hexadecimal color code like #3A7BD5 into its red, green, and blue values, rgb(58, 123, 213). Both describe the same color in different notations: HEX is compact and common in design tools and CSS, while RGB exposes the individual channel values you need for opacity, color math, and some APIs.
Paste any hex code, including 3 digit shorthand like #F60 and 8 digit codes with alpha, and get the RGB values with a live preview of the color. Copy the result in CSS-ready format.
A 6 digit hex code is three pairs of hexadecimal digits, one pair per channel. Split #3A7BD5 into 3A, 7B, and D5, convert each pair from base 16 to decimal, and you get 58 red, 123 green, and 213 blue. Shorthand codes like #F60 expand each digit, becoming #FF6600 before conversion.
HEX is the compact default for solid colors in CSS and design handoffs. RGB becomes necessary when you need transparency, rgba(58, 123, 213, 0.5), or when you manipulate channels in code, like darkening a color by scaling its values. Modern CSS accepts both everywhere, so the choice is about convenience.
An 8 digit hex code carries a fourth pair for opacity: #3A7BD580 is the same blue at roughly 50 percent alpha. The converter reads the alpha pair and outputs an rgba() value, so semi-transparent design tokens convert correctly instead of silently losing their opacity.
RGB to HEX
Convert RGB color values to HEX codes.
Color Converter
Convert colors between HEX, RGB, and HSL formats instantly.
CMYK to HEX Converter
Convert CMYK print color values to HEX color codes instantly.
CMYK to RGB Converter
Convert CMYK print color values to RGB screen color values instantly.
HEX to CMYK Converter
Convert HEX color codes to CMYK print color values instantly.
HEX to HSL
Convert HEX color codes to HSL values.