Forgly

RGB to HEX Converter

Convert RGB channel values to a HEX color code.

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

Converting RGB to HEX

RGB describes a color by its red, green, and blue channels (0–255). Converting to HEX gives the six-digit code used in CSS and design tools.

How to convert RGB to HEX by hand

  1. Take each channel value (0–255).
  2. Convert each to a two-digit hexadecimal number (00–FF).
  3. Concatenate them after a # in red, green, blue order.

Worked example

rgb(249, 115, 22)#f97316

More converters

Frequently asked questions

How do I convert RGB to HEX?

Take each channel value (0–255). Convert each to a two-digit hexadecimal number (00–FF). Concatenate them after a # in red, green, blue order. Or just use the converter on this page — it does it instantly. Example: rgb(249, 115, 22) becomes #f97316.

What is rgb(249, 115, 22) in hex?

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

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.