RGB to HEX Converter
Type a RGB value and get HEX straight away. Everything runs in your browser — nothing is sent to a server.
HOW
How the conversion works
Each RGB channel (0–255) becomes two hexadecimal digits, padded with a leading zero when needed, then joined together. 255 becomes FF and 9 becomes 09.
EXAMPLES
RGB to HEX examples
| Color | RGB | HEX |
|---|---|---|
| Red | rgb(255, 0, 0) |
#FF0000 |
| Tomato | rgb(255, 99, 71) |
#FF6347 |
| Orange | rgb(255, 165, 0) |
#FFA500 |
| Gold | rgb(255, 215, 0) |
#FFD700 |
| Limegreen | rgb(50, 205, 50) |
#32CD32 |
| Teal | rgb(0, 128, 128) |
#008080 |
| Dodgerblue | rgb(30, 144, 255) |
#1E90FF |
| Royalblue | rgb(65, 105, 225) |
#4169E1 |
| Blueviolet | rgb(138, 43, 226) |
#8A2BE2 |
| Hotpink | rgb(255, 105, 180) |
#FF69B4 |
MORE