Color Converter vs Number Base Converter
Color Converter
Convert colors between HEX, RGB, HSL, and HSV — instantly and in any direction.
Convert any color between HEX (#rrggbb), RGB (r, g, b), HSL (hue, saturation, lightness), and HSV/HSB (hue, saturation, value) formats. Accepts HEX with or without the # prefix, shorthand HEX (#abc), rgb() function syntax, hsl() function syntax, or bare r,g,b values. Returns all four representations at once.
Example input:
{
"color": "#ff6600"
}Number Base Converter
Convert numbers between binary, octal, decimal, and hexadecimal.
Convert any integer between base 2 (binary), base 8 (octal), base 10 (decimal), and base 16 (hexadecimal). Returns all four representations at once, with grouped formats for readability. Supports arbitrarily large integers via BigInt.
Example input:
{
"input": "255",
"from_base": 10
}| Feature | Color Converter | Number Base Converter |
|---|---|---|
| Category | conversion | encoding |
| Inputs | color | input, from_base |
| Outputs | hex, rgb, hsl, hsv, valid, error | input_normalized, from_base, decimal, binary, octal, hexadecimal, binary_grouped, hex_grouped, bit_length, is_power_of_two |