RGB to HEX Converter

Convert an RGB color (0–255 each) to its #RRGGBB hex code.

Result

HEX color

#8A2BE2

How it works

Each channel → 2 hex digits, joined as #RRGGBB

Web colors are written in hex. Each of red, green and blue (0–255) becomes a two-digit hex value, combined into one #RRGGBB code.

Advertisement

Frequently asked questions

Why use hex colors?

Hex is compact and universal in CSS and design tools; #FFFFFF is white, #000000 is black.

What is the range per channel?

0 to 255, which maps to 00–FF in hexadecimal for each of red, green and blue.

Advertisement

Related calculators