Base64 Encoder / Decoder vs Color Converter
Base64 Encoder / Decoder
Encode text or data to Base64, or decode Base64 back to plain text.
Encode any UTF-8 string to Base64 or decode a Base64 string back to plain text. Supports standard Base64 (RFC 4648) and URL-safe Base64 (uses - and _ instead of + and /). Detects and reports malformed input.
Example input:
{
"input": "Hello, World!",
"mode": "encode",
"charset": "standard"
}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"
}| Feature | Base64 Encoder / Decoder | Color Converter |
|---|---|---|
| Category | encoding | conversion |
| Inputs | input, mode, charset | color |
| Outputs | output, valid, encoding, byte_length, error | hex, rgb, hsl, hsv, valid, error |