HEX to RGB Color Converter
Convert HEX color codes (#RRGGBB) to RGB red, green, blue values with live preview.
How to use it
- Paste a hex code like #5b53e8 to get RGB values.
Examples
| #5B53E8 | rgb(91, 83, 232) |
A hex color code splits into three 2-digit pairs — red, green, blue — each a hexadecimal number from 00 to FF (0-255 in decimal). #5B53E8 splits into 5B, 53 and E8; converting each pair from hex to decimal gives 91, 83 and 232, so the RGB form is rgb(91, 83, 232).
Where this comes up
- Taking a hex color from a CSS file or brand style guide and getting the RGB values a design tool or print spec asks for
- Debugging a color in code where the RGB channel values need to be read individually
- Converting a hex swatch into the format required by an image editor's color picker
Runs entirely in your browser. Nothing you type is uploaded, logged or shared.
Last updated 18 August 2026