Hex to RGB converter

Convert a hex color like #1d4ed8 to its RGB values, with a live color preview.

Preview

RGB: -

How it works

Worked examples

Brand blue

Input: #1d4ed8

Output: rgb(29, 78, 216)

1d → 29, 4e → 78, d8 → 216 in decimal.

White (shorthand)

Input: #fff

Output: rgb(255, 255, 255)

3-digit #fff expands to #ffffff = rgb(255, 255, 255).

Orange

Input: #ff8800

Output: rgb(255, 136, 0)

ff → 255, 88 → 136, 00 → 0.

FAQ

What does #1d4ed8 mean?

Red 0x1d (29), Green 0x4e (78), Blue 0xd8 (216), i.e. rgb(29, 78, 216).

Does it accept colors without #?

Yes, the # is optional. Both 1d4ed8 and #1d4ed8 work.

What about alpha (transparency)?

This tool handles RGB. 8-digit hex with alpha is not converted here.

Updated: June 7, 2026