Hex to RGB Calculator
RGB to Hex
Convert RGB color values to hexadecimal color codes
Formula
Hex = Red.toString(16) + Green.toString(16) + Blue.toString(16)
Frequently Asked Questions
What is a hex color code?
A hex color code is a 6-character string representing red, green, and blue values in hexadecimal (00 to FF). For example, FF0000 is pure red.
How do you convert RGB to hex?
Convert each RGB value (0-255) to its hexadecimal equivalent (00-FF) and concatenate them. For example, RGB(255, 87, 51) becomes #FF5733.