RGB to Hex Converter
Enter red, green and blue color levels (0..255) and press the Convert button:
Share on Social Media:
Converter ๐จ
R Red โค๏ธ
G Green ๐
B Blue ๐

What does this RGB to Hex converter do? โ
It takes input in the form of values for Red, Green and Blue ranging from 0 to 255 ๐ข
and then converts those values to a hexadecimal string that can be used to specify color in HTML/CSS code. ๐ป
Photo editing software usually represents color in RGB, ๐๏ธ
and therefore if you would like to use the colors you use in your photo editing software as the background of your HTML element, ๐ผ๏ธ
then you will have to get the hexadecimal representation of the RGB values. #๏ธโฃ
This tool allows you to get those values. โ
Try our new color exploring tool. ๐๐
Convert a Hex value to RGB ๐
Perhaps you have seen a hex code on a web page and would like to use that color in your photo editing software. ๐งโ๐จ
In that case, you will need the RGB values if your photo editing software does not support hex values. ๐ซ#๏ธโฃ
Click here to use the Hex to RGB converter page. ๐
RGB to Hex Color Table ๐
Color Name | (R,G,B) | Hex Code |
---|---|---|
Black โซ | (0,0,0) | #000000 |
White โช | (255,255,255) | #FFFFFF |
Red โค๏ธ | (255,0,0) | #FF0000 |
Lime ๐ | (0,255,0) | #00FF00 |
Blue ๐ | (0,0,255) | #0000FF |
Yellow ๐ | (255,255,0) | #FFFF00 |
Cyan ๐ง | (0,255,255) | #00FFFF |
Magenta ๐ | (255,0,255) | #FF00FF |
Silver ๐ช | (192,192,192) | #C0C0C0 |
Gray ๐ซ๏ธ | (128,128,128) | #808080 |
Maroon ๐ท | (128,0,0) | #800000 |
Olive ๐ซ | (128,128,0) | #808000 |
Green ๐ฟ | (0,128,0) | #008000 |
Purple ๐ฃ | (128,0,128) | #800080 |
Teal ๐ฌ | (0,128,128) | #008080 |
Navy โ | (0,0,128) | #000080 |
RGB to Hex Conversion ๐
Convert the red, green and blue color values from decimal to hex. ๐ขโก๏ธ#๏ธโฃ
Concatenate the 3 hex values of the red, green and blue together: RRGGBB
. ๐
Example 1:
Transforming the color red (255,0,0) into hex code format becomes โค๏ธ
R = 255โโ = FFโโ
G = 0โโ = 00โโ
B = 0โโ = 00โโ
Hex = #FF0000 ๐ฅ
Example 2:
Convert gold color (255,215,0) to hex color code: โญ
R = 255โโ = FFโโ
G = 215โโ = D7โโ
B = 0โโ = 00โโ
Hex = #FFD700 โจ
Let the colors do the talking!