HEX to RGB Converter
Type a HEX value and get RGB straight away. Everything runs in your browser — nothing is sent to a server.
HOW
How the conversion works
A HEX code packs red, green and blue into two hexadecimal digits each. Split #RRGGBB into pairs and read each pair as a decimal number: FF becomes 255 and 63 becomes 99.
EXAMPLES
HEX to RGB examples
| Color | HEX | RGB |
|---|---|---|
| Red | #FF0000 |
rgb(255, 0, 0) |
| Tomato | #FF6347 |
rgb(255, 99, 71) |
| Orange | #FFA500 |
rgb(255, 165, 0) |
| Gold | #FFD700 |
rgb(255, 215, 0) |
| Limegreen | #32CD32 |
rgb(50, 205, 50) |
| Teal | #008080 |
rgb(0, 128, 128) |
| Dodgerblue | #1E90FF |
rgb(30, 144, 255) |
| Royalblue | #4169E1 |
rgb(65, 105, 225) |
| Blueviolet | #8A2BE2 |
rgb(138, 43, 226) |
| Hotpink | #FF69B4 |
rgb(255, 105, 180) |
MORE