Tool

HEX to RGB converter

Convert a HEX color code to RGB (red, green, blue) values instantly.

How HEX and RGB relate

A HEX code like #739CDF is just three pairs of base-16 digits — one each for red, green, and blue. To convert to RGB, read each pair as a number from 0–255: 73 → 115, 9C → 156, DF → 223, giving rgb(115, 156, 223).

When you need RGB

RGB (and RGBA) is handy when you need an alpha channel for transparency, or when working in environments that expect numeric channels.

Need all formats at once? Use the full color converter.

Frequently asked questions

How do I convert HEX to RGB by hand?

Split the 6-digit HEX into three pairs and convert each pair from base-16 to a 0–255 number. This tool does it instantly.

What is rgb() in CSS?

rgb(r, g, b) sets a color by its red, green, and blue channels (0–255 each). Use rgba() to add an alpha value for transparency.