Forgly

HEX to RGB Converter & Calculator

Convert any HEX color code to RGB channel values with this free online HEX to RGB calculator — paste a hex code, get the rgb() value for CSS.

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

Converting HEX to RGB

A HEX color like #f97316 packs red, green, and blue into three pairs of hexadecimal digits. Converting HEX to RGB gives you the 0–255 channel values used in CSS rgb(), canvas, and design tools. This HEX to RGB converter handles 6-digit (#RRGGBB) and 3-digit shorthand (#f80) codes, with or without the leading #.

How to convert HEX to RGB by hand

  1. Drop the leading # from the HEX code (e.g. f97316).
  2. Split it into three pairs: RR, GG, BB. Expand 3-digit shorthand first (#f80 → #ff8800).
  3. Convert each hex pair to decimal — 00 becomes 0, FF becomes 255.
  4. Write the result as rgb(red, green, blue).

Worked example

#f97316rgb(249, 115, 22)0xF9 = 249, 0x73 = 115, 0x16 = 22.

Common HEX to RGB values

ColorHEXRGB
White#FFFFFFrgb(255, 255, 255)
Black#000000rgb(0, 0, 0)
Red#FF0000rgb(255, 0, 0)
Green#00FF00rgb(0, 255, 0)
Blue#0000FFrgb(0, 0, 255)
Yellow#FFFF00rgb(255, 255, 0)
Orange#FFA500rgb(255, 165, 0)
Gray#808080rgb(128, 128, 128)

More converters

Frequently asked questions

How do I convert HEX to RGB?

Drop the leading # from the HEX code (e.g. f97316). Split it into three pairs: RR, GG, BB. Expand 3-digit shorthand first (#f80 → #ff8800). Convert each hex pair to decimal — 00 becomes 0, FF becomes 255. Write the result as rgb(red, green, blue). 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). 0xF9 = 249, 0x73 = 115, 0x16 = 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.