HEX to RGB Color Converter

Instantly convert Hexadecimal (HEX) to Red, Green, Blue (RGB) color codes. Enter any HEX value and get the RGB equivalent in real time — no signup required.

Color Preview

#6366F1

rgb(99, 102, 241)

All formats

RGB

rgb(99, 102, 241)

HSL

hsl(239, 84%, 67%)

CMYK

cmyk(59%, 58%, 0%, 5%)

Ad · Leaderboard (728×90)

HEX vs RGB — What's the Difference?

HEX

Hexadecimal

A 6-digit hex code (#RRGGBB) representing red, green, and blue channels in base-16. The most widely used color format in web development and CSS.

Example: color: #6366f1

RGB

Red, Green, Blue

Three integer values (0–255) for red, green, and blue light. The native color model for screens, monitors, and digital displays.

Example: color: rgb(99, 102, 241)

How to Convert HEX to RGB

R = parseInt(hex[1..2], 16) | G = parseInt(hex[3..4], 16) | B = parseInt(hex[5..6], 16)

All conversion math runs in your browser using the sRGB color space. No data is sent to a server.

Common Colors — HEX to RGB Reference Table

ColorHEXRGB
Red#FF0000rgb(255, 0, 0)
Green#008000rgb(0, 128, 0)
Blue#0000FFrgb(0, 0, 255)
White#FFFFFFrgb(255, 255, 255)
Black#000000rgb(0, 0, 0)
Orange#FFA500rgb(255, 165, 0)
Purple#800080rgb(128, 0, 128)
Yellow#FFFF00rgb(255, 255, 0)
Cyan#00FFFFrgb(0, 255, 255)
Magenta#FF00FFrgb(255, 0, 255)
Gray#808080rgb(128, 128, 128)
Pink#FFC0CBrgb(255, 192, 203)

Frequently Asked Questions

How do I convert HEX to RGB?

To convert HEX to RGB: R = parseInt(hex[1..2], 16) | G = parseInt(hex[3..4], 16) | B = parseInt(hex[5..6], 16). Use the converter above to do this instantly for any color value.

What is the HEX color format?

Hexadecimal (HEX) — A 6-digit hex code (#RRGGBB) representing red, green, and blue channels in base-16. The most widely used color format in web development and CSS.

What is the RGB color format?

Red, Green, Blue (RGB) — Three integer values (0–255) for red, green, and blue light. The native color model for screens, monitors, and digital displays.

Is this HEX to RGB converter free?

Yes. It is completely free, works in your browser with no signup or upload. All color math runs locally.

Can I convert RGB back to HEX?

Yes — use the swap button in the converter above, or visit the RGB to HEX converter page directly.

Ad · Medium Rectangle (300×250)