RGB565 to HEX Converter

Convert 16-bit RGB565 colors (like 0x3BDF) into HEX and RGB (0-255) for embedded UI work.

Open converter tool

Use the full converter to switch between RGB565 hex/dec, HEX, RGB, and 0xRRGGBB with live preview.

Open Color Code Converter

Common RGB565 examples

0xF800 → red-ish (R max)

0x07E0 → green-ish (G max)

0x001F → blue-ish (B max)

0xFFFF → white

Why RGB565 is used in embedded

RGB565 stores color in 16 bits, reducing memory usage and bus bandwidth versus 24-bit RGB. It is common in TFT/LCD frame buffers and SPI display drivers.