Convert HSV color values into standard RGB channels.
Input formats
Provide colors using hsv(h, s%, v%) syntax, with hue from 0 to 360 and saturation and value from 0% to 100%. Each line is parsed independently in batch mode.
RGB output
The output prints as rgb(r, g, b) with each channel from 0 to 255. hsv(11, 80%, 100%) becomes rgb(255, 88, 51).
Hue, saturation, and value
Hue selects the base color from a 360-degree wheel. Saturation controls how far that hue sits from gray, and value scales the overall brightness. At 0% value, every hue and saturation combination produces black.
Batch processing
Paste multiple HSV values, one per line, to convert the full list at once. Use the color picker to preview and adjust the currently selected line.