RGB to Hex Converter
Convert RGB color values to hexadecimal color codes instantly. Enter red, green, and blue values between 0 and 255 and get the corresponding hex color for CSS, web design, UI design, and graphic projects.
#2563EB
Quick RGB to Hex Examples
| RGB | Hex Color |
|---|---|
rgb(0, 0, 0) | #000000 |
rgb(255, 255, 255) | #FFFFFF |
rgb(255, 0, 0) | #FF0000 |
rgb(0, 255, 0) | #00FF00 |
rgb(0, 0, 255) | #0000FF |
rgb(37, 99, 235) | #2563EB |
rgb(245, 158, 11) | #F59E0B |
How to Convert RGB to Hex
Convert each RGB value from decimal to a two-digit hexadecimal number, then combine the red, green, and blue pairs in the order RRGGBB.
Example: Convert rgb(37, 99, 235)
37 → 25
99 → 63
235 → EB
Combine the pairs → #2563EB