Hex to RGB Converter
Convert hexadecimal color codes to RGB values instantly. Enter any 3-digit or 6-digit hex color and get the corresponding RGB color values for web design, CSS, UI design, and graphics work.
#2563EB
Quick Hex to RGB Examples
| Hex Color | RGB |
|---|---|
#000000 | rgb(0, 0, 0) |
#FFFFFF | rgb(255, 255, 255) |
#FF0000 | rgb(255, 0, 0) |
#00FF00 | rgb(0, 255, 0) |
#0000FF | rgb(0, 0, 255) |
#2563EB | rgb(37, 99, 235) |
#F59E0B | rgb(245, 158, 11) |
How to Convert Hex to RGB
A 6-digit hex color is divided into three pairs: RR, GG, and BB. Convert each pair from hexadecimal to decimal to get the red, green, and blue values.
Example: Convert #2563EB
25 → 37
63 → 99
EB → 235
RGB = rgb(37, 99, 235)