RGB to HEX Converter

What is RGB to HEX Converter

This tool converts RGB color values (like rgb(59, 130, 246)) to HEX codes (like #3B82F6). RGB is common in design tools and JavaScript, while HEX is the standard for CSS and HTML. Enter any R, G, B value from 0 to 255 and get the exact HEX code with a live color preview.

How to use

  1. Enter the Red, Green, and Blue values (0–255) in the RGB fields.
  2. The HEX code and HSL values update instantly.
  3. Click the copy button next to any format to copy it to your clipboard.
  4. Switch to other converters using the mode links at the top.

When to use it

Stuck with a color as separate R, G, B values from a JavaScript canvas API and need it in CSS? Enter 230, 57, 70 and you get #e63946 right away, ready to drop into a stylesheet or design token. It also saves you the mental math whenever a design tool hands you RGB but your codebase expects HEX.

Frequently asked questions

What is rgb(255, 0, 0) in HEX?

Pure red rgb(255, 0, 0) is #ff0000 in HEX. FF in hex equals 255 in decimal.

Are RGB and HEX always equivalent?

Yes, every RGB value has an exact HEX equivalent and vice versa. They are two notations for the same 8-bit-per-channel color space.

What is rgb(0, 0, 0) in HEX?

Black rgb(0, 0, 0) is #000000 in HEX.

What is rgb(255, 255, 255) in HEX?

White rgb(255, 255, 255) is #ffffff in HEX.

Can I share this tool with my inputs pre-filled?

Yes. The URL updates automatically as you type. Copy it from the address bar or use the Share button — anyone who opens the link will see your exact inputs ready to go.

Related tools