Hex to RGB Color
Result
RGB rgb(52, 152, 219)
Red 52
Green 152
Blue 219
Convert a CSS hex color code to RGB values.
Formula
R = hex[0:2]→int; G = hex[2:4]→int; B = hex[4:6]→int (base 16)
- 3-digit shorthand (#RGB) is expanded to #RRGGBB before parsing.
Hex to RGB Color Example
Inputs
- Hex Color (#RRGGBB): #3498db
#3498db → R=52, G=152, B=219
Frequently asked questions
How do I use the Hex to RGB Color?
Enter the value in the input field and the result updates immediately.
How accurate is this converter?
Uses internationally recognised conversion factors. Results are rounded to the displayed decimal places.
Can I verify this manually?
Yes — apply the formula shown above step by step.