CMYK to HSV Converter

Color Picker · developer

Convert CMYK values to HSV with a fixed input and output format, live preview of the conversion line, and copy-ready results. All processing runs locally in your browser.

Calculator

From: CMYK (print inks)

To: HSV (hue, saturation, value)

CMYK and “exact” values

CMYK describes ink on paper; on screen we still use sRGB. This tool uses a simple 0–100% model for preview—not a specific printer ICC profile—so it will not match Photoshop or print shops exactly.

When CMYK is shown as whole percentages, several different RGB colors can round to the same CMYK string. That is normal: CMYK→RGB is not unique. Here, CMYK copied from the Color Picker is converted so it matches the same HEX/RGB shown beside that color on the picker.

For web and UI work, treat HEX / RGB as the stable reference; use CMYK as an approximate print-oriented hint.

About CMYK

CMYK describes cyan, magenta, yellow, and black ink percentages (0–100%). It is a print-oriented model; on-screen preview still uses RGB.

About HSV

HSV (also called HSB in some apps) uses hue, saturation (0–100%), and value/brightness (0–100%). It aligns with how many color wheels behave.

How to convert CMYK to HSV

Enter a valid CMYK value in the calculator. The tool follows the pipeline below: parse your input, hold the color as sRGB (with alpha when relevant), then format the result as HSV.

Accepted shapes include CSS-like functions (e.g. rgb(...), hsl(...)) and compact comma-separated numbers where appropriate. Hex may include or omit the leading #.

Conversion procedure

  1. Parse CMYK: accept cmyk(c%, m%, y%, k%) or four comma-separated numbers. Each of C, M, Y, K is expected in 0–100, representing ink percentages for the simple subtractive model used on this site (not a specific printer ICC profile).
  2. Convert CMYK → sRGB: using normalized c,m,y,k ∈ [0,1], the tool applies the standard inverse: R = 255 × (1 − c)(1 − k), G = 255 × (1 − m)(1 − k), B = 255 × (1 − y)(1 − k). Integer CMYK can match more than one RGB after rounding; when several triples yield the same rounded CMYK, this site picks the one aligned with the Color Picker’s convention so copied CMYK values round-trip to the same HEX shown there.
  3. Build HSV: V = max(R,G,B) (as a 0–100% value after scaling), S = 0 if V = 0, else S = (max − min) / max × 100. Hue uses the same 60° family of cases as the HSL step. Output is integer hue and whole percentages: hsv(h, s%, v%).
  4. Finalize: the result string is what you copy from the calculator. The line under the fields summarizes the path in short form (HSV ← sRGB ← CMYK). Rounding is intentional so values read like typical CSS; tiny differences versus other apps can still appear because of integer hue, saturation, lightness/value, or ink percentages.
  5. CMYK reminder: this model is a screen-side approximation. For print-critical work, follow your printer or PDF export profile; use HEX/RGB on this site as the authoritative on-screen reference. HSL/HSV reminder: when hue, saturation, and lightness/value are shown as whole numbers, more than one underlying RGB can produce the same text. Typing those integers back into a converter may therefore differ by ±1 from a color you first picked as HEX in the Color Picker—that is expected rounding behavior, not a broken formula.

Example

Input (CMYK): cmyk(76%, 31%, 0%, 14%)

Output (HSV): hsv(205, 76%, 86%)

Summary

This page converts CMYK input into HSV output. The numbered “Conversion procedure” above is the full breakdown: validation and parsing, conversion to a single internal sRGB (+ alpha) sample, derivation of HSV coordinates from that sample, and final rounding to the strings you see in CSS-oriented tools. The same pipeline runs in your browser as you type.

Relationship context

CMYK (print inks) and HSV (hue, saturation, value) are different ways to describe the same sRGB color (except CMYK, which is an approximate ink model). Converting CMYK → HSV does not change the underlying color within the limits of each notation; it only changes how numbers are written.

Example conversions

Sample CMYK values and the matching HSV output using the same rules as the calculator.

CMYK inputHSV output
cmyk(0%, 0%, 0%, 100%)hsv(0, 0%, 0%)
cmyk(0%, 0%, 0%, 0%)hsv(0, 0%, 100%)
cmyk(0%, 63%, 54%, 9%)hsv(351, 63%, 91%)

More color format converters

Other dedicated pages (fixed input and output types). Open the Color Picker for the full list.