Convert CMYK to HEX and RGB
CMYK is the four-ink model used for print (cyan, magenta, yellow and key black), while screens use RGB/HEX. This converter gives you the standard on-screen equivalent of a CMYK colour so you can preview a print colour on the web or pick a matching HEX value.
The conversion formula
C, M, Y, K as fractions 0–1
R = 255 × (1 − C) × (1 − K)
G = 255 × (1 − M) × (1 − K)
B = 255 × (1 − Y) × (1 − K)
HEX = #RRGGBB from those R, G, B values
This is the device-independent (“naive”) conversion — the same one browsers and CSS assume. It is exact as a definition but, like all CMYK→RGB maths, it is an approximation of how the colour will actually print.
Why print and screen differ
True press output depends on the ICC profile of the specific printer, the paper stock and the inks. Two printers fed the same CMYK values can produce visibly different results. Use this tool to get a faithful screen preview and a matching web colour, not a colour-managed proof.
Common uses
- Previewing a brand’s CMYK print colour as a web HEX value.
- Translating a printer’s CMYK spec into RGB for a website or app.
- Sanity-checking that a CMYK mix lands near the colour you expect.
Everything is computed in your browser — nothing is uploaded.