Forgly

HEX to RGB Converter

Convert a HEX color code to RGB channel values.

Try an example:
HEX
#f97316
RGB
rgb(249, 115, 22)
HSL
hsl(25, 95%, 53%)

Converting HEX to RGB

A HEX color like #f97316 encodes red, green, and blue as three pairs of hexadecimal digits. Converting to RGB gives the 0–255 channel values used in CSS rgb() and canvas.

How to convert HEX to RGB by hand

  1. Drop the leading # from the HEX code.
  2. Split it into three pairs: RR, GG, BB.
  3. Convert each hex pair to decimal (00–FF becomes 0–255).

Worked example

#f97316rgb(249, 115, 22)

More converters

Frequently asked questions

How do I convert HEX to RGB?

Drop the leading # from the HEX code. Split it into three pairs: RR, GG, BB. Convert each hex pair to decimal (00–FF becomes 0–255). Or just use the converter on this page — it does it instantly. Example: #f97316 becomes rgb(249, 115, 22).

What is #f97316 in rgb?

#f97316 converts to rgb(249, 115, 22).

Is this converter free and private?

Yes — it is free and unlimited, and the conversion runs entirely in your browser, so nothing is uploaded to a server.