Convert any hex color code to RGB values instantly. Essential for web designers, graphic artists, developers and anyone working with colors in CSS, Photoshop or digital art.
Informational calculator only. Verify important outputs independently before legal, tax, medical, engineering, safety-critical, contractual, employment, or compliance use.
Enter job values, review the estimate, then use the decision hints before ordering or quoting.
Enter hex color (with or without #)
R = parseInt(hex[1:2], 16), G = parseInt(hex[3:4], 16), B = parseInt(hex[5:6], 16)Each pair of hex digits converts to 0–255 decimal using base-16.
For 3-digit hex (#RGB) → duplicate digits (#RRGGBB)
Hex is compact (6 characters), RGB is decimal (0–255 per channel) — both represent the same color.
Use opposite converter or manually convert each channel to 2-digit hex.