RGB to HEXHEX to RGB
<-- RED
<-- GREEN
<-- BLUE

Enter RGB


Given RGB = R:255, G:255B:255
Calculate hex code and hue.

Calculate Piece 1 of the Red portion:

Red Piece 1  =  Red - Red mod 16
  16

Red Piece 1  =  255 - 255 mod 16
  16

Check our modulus lesson
255 mod 16 = 15
Red Piece 1  =  255 - 15
  16

Red Piece 1  =  240
  16

Red Piece 1 = 15
In the string 0123456789ABCDEF
We use position 15 = F

Calculate Piece 2 of the Red portion:

Red Piece 2 = Red mod 16
Red Piece 2 = 255 mod 16
Red Piece 2 = 15

In the string 0123456789ABCDEF
We use position 15 = F

Calculate Piece 1 of the Green portion:

Green Piece 1  =  Green - Green mod 16
  16

Green Piece 1  =  255 - 255 mod 16
  16

Check our modulus lesson
255 mod 16 = 15
Green Piece 1  =  255 - 15
  16

Green Piece 1  =  240
  16

Green Piece 1 = 15
In the string 0123456789ABCDEF
We use position 15 = F

Calculate Piece 2 of the Green portion:

Green Piece 2 = Green mod 16
Green Piece 2 = 255 mod 16
Green Piece 2 = 15

In the string 0123456789ABCDEF
We use position 15 = F

Calculate Piece 1 of the Blue portion:

Blue Piece 1  =  Blue - Blue mod 16
  16

Blue Piece 1  =  255 - 255 mod 16
  16

Check our modulus lesson
255 mod 16 = 15
Blue Piece 1  =  255 - 15
  16

Blue Piece 1  =  240
  16

Blue Piece 1 = 15
In the string 0123456789ABCDEF
We use position 15 = F

Calculate Piece 2 of the Blue portion:

Blue Piece 2 = Blue mod 16
Blue Piece 2 = 255 mod 16
Blue Piece 2 = 15

In the string 0123456789ABCDEF
We use position 15 = F

Our final RGB to HEX conversion is below:

R:255, G:255, B:255 → = F = F = F = F = F = F

Calculate Hue for RGB = (255, 255, 255)

Since RGB, we are in the Red-Yellow region and the formula is below:
h  =  60°(G - B)
  R - B

h  =  60°(255 - 255)
  255 - 255

h  =  60°(0)
  0

h  =  0
  0

h =



You have 2 free calculationss remaining




What is the Answer?
h =

How does the RGB and HEX conversions Calculator work?
Free RGB and HEX conversions Calculator - This converts HTML colors from RGB (Red, Green, Blue) to HEX and HEX to RGB (Red, Green, Blue) as well as calculate the Hue.
This calculator has 4 inputs.

What 4 concepts are covered in the RGB and HEX conversions Calculator?

conversion
a number used to change one set of units to another, by multiplying or dividing
hexadecimal
Base 16 number system
rgb
an additive color model in which the red, green, and blue primary colors of light are added together in various ways to reproduce a broad array of colors.
rgb and hex conversions
Example calculations for the RGB and HEX conversions Calculator

Tags:



Add This Calculator To Your Website