HEX to RGB Converter

Paste a hex color like #4F46E5 and get its RGB equivalent instantly — with a validity check for typos.

Frequently asked questions

How do I convert a 3-digit hex color?

Shorthand hex like #4F4 expands each digit into a pair: 4F4 becomes 44FF44. This converter handles both 3-digit and 6-digit forms automatically.

Why does RGB go up to 255?

Each channel is stored in one byte, and one byte holds 256 values (0-255). The hex pairs map directly: FF in hexadecimal equals 255 in decimal, which is why full red is both #FF0000 and rgb(255, 0, 0).

Does hex order matter?

Yes, always red-green-blue: #RRGGBB. #FF0000 is red because red is FF. Swapping pairs is a classic bug when hand-editing colors.

Related tools

Copied