Hex to RGB Converter
Convert Hex color codes to RGB and vice versa. Free online color code converter.
Hex to RGB
RGB to Hex
Pick a Color
Frequently Asked Questions
What is the difference between Hex and RGB?
Hex (hexadecimal) and RGB (Red, Green, Blue) are two ways to represent colors. Hex uses a 6-digit hexadecimal code (#RRGGBB), while RGB uses three decimal values from 0-255 (rgb(R, G, B)). Both represent the same colors, just in different formats.
How do I convert Hex to RGB?
Split the hex code into three pairs: RR, GG, BB. Convert each pair from hexadecimal to decimal. For example, #4F46E5 becomes 4F=79, 46=70, E5=229, giving RGB(79, 70, 229).
What is HSL?
HSL stands for Hue, Saturation, and Lightness. Hue is a degree on the color wheel (0-360ยฐ), Saturation is a percentage (0-100%), and Lightness is a percentage (0-100%). HSL is often more intuitive for designers than RGB or Hex.
Can I use 3-digit hex codes?
Yes! 3-digit hex codes like #F00 are shorthand for 6-digit codes: #FF0000. Each digit is doubled. Our converter automatically handles both 3-digit and 6-digit hex codes.
What is the RGBA format?
RGBA is RGB with an Alpha channel for opacity. The alpha value ranges from 0 (fully transparent) to 1 (fully opaque). For example, rgba(79, 70, 229, 0.5) creates a semi-transparent version of the color.
Is this tool free?
Yes, completely free with no sign-up required. All conversions happen in your browser.