Hex to RGB Batch Converter
Paste a list of HEX colour codes and convert them all to RGB at once. Free online batch HEX to RGB converter.
Frequently Asked Questions
What is a HEX colour code?
A HEX colour code is a six-digit (or three-digit shorthand) hexadecimal number used to represent colours in web design and digital graphics. The format is #RRGGBB, where RR, GG, and BB are two-digit hex values representing the intensity of red, green, and blue respectively, each ranging from 00 (none) to FF (maximum). For example, #FF0000 is pure red, #00FF00 is pure green, and #0000FF is pure blue.
What is the difference between HEX and RGB?
HEX and RGB are two different notations for the same underlying colour model. Both represent colours using red, green, and blue channels. HEX expresses each channel as a two-digit hexadecimal value (00–FF), while RGB expresses each channel as a decimal integer (0–255). For example, #FF5733 in HEX is rgb(255, 87, 51) in RGB. They are equivalent and used interchangeably in CSS and design tools.
What is the 3-digit HEX shorthand?
The 3-digit HEX shorthand is an abbreviated form where each digit is doubled to produce the full 6-digit code. For example, #FFF expands to #FFFFFF (white), #F00 becomes #FF0000 (red), and #3A9 becomes #33AA99. This shorthand only works when each pair of digits in the full code is identical (e.g., #AABBCC can be shortened to #ABC). This converter automatically expands 3-digit codes to their full 6-digit equivalents.