Base 16



         


In mathematics, hexadecimal (often abbreviated hex) is a base 16 numeral system, usually written using the symbols 0-9 and A-F or a-f. It is a useful system in computers because there is an easy mapping from four bits to a single hex digit. Thus one can represent every byte as two consecutive hexadecimal digits. Compare the binary, hex and decimal representations in the chart on the right side of the page.


bin hex dec 0000 = 0 = 0 0001 = 1 = 1 0010 = 2 = 2 0011 = 3 = 3 0100 = 4 = 4 0101 = 5 = 5 0110 = 6 = 6 0111 = 7 = 7 1000 = 8 = 8 1001 = 9 = 9 1010 = A (~) = 10 1011 = B (!) = 11 1100 = C (@) = 12 1101 = D (#) = 13 1110 = E ($) = 14 1111 = F (%) = 15

For example, the decimal numeral 79 whose binary representation is 01001111 can be written as 4F in hexadecimal (4 = 0100, F = 1111). In some representations, the characters ~, !, @, #, $ and % are used instead of ABCDEF (respectively).

There are many ways to denote hexadecimal numerals, used in different programming languages:

There is no single agreed-upon standard, so all the above conventions are in use, sometimes even in the same paper. However, as they are quite unambiguous, little difficulty arises from this.

The word "hexadecimal" is strange in that hexa is derived from the Greek έξι (hexi) for "six" and decimal is derived from the Latin for "ten". An older term was the pure Latin "sexidecimal", but that was changed because some people thought it too risque, and it also had an alternative meaning of "base 60". However, the word "sexagesimal" (base-60) retains the prefix.

A common use of hexadecimal numerals is found in web programming. The languages HTML and CSS use hexadecimal notation to specify colors on web pages; there is just the # symbol, not a separate symbol for "hexadecimal". 24-bit color is represented in the format #RRGGBB, where RR specifies the value of the Red component of the color, GG the Green component and BB the Blue component. E.g., a shade of red that is 238,9,63 in decimal is coded as #EE093F. See Web colors.

In URLs special characters can be coded hexadecimally in ASCII with for each byte a percent sign (%) in front, e.g. http://en.BambooWeb.org/wiki/Main%20Page

[Top]

Fractions

The hexadecimal system is quite good for forming fractions:

1/2 = 0.8
1/3 = 0.5555 recurring
1/4 = 0.4
1/5 = 0.3333 recurring
1/6 = 0.2AAAA recurring
1/8 = 0.2
1/A = 0.19999 recurring
1/C = 0.15555 recurring
1/F = 0.1111 recurring


Because the base is a square, hexadecimal fractions have an odd period much more often than decimal ones. Repeating decimals occur when the denominator has a prime factor not found in the base. In the case of hexadecimal numbers, this applies if and only if the denominator is not a power of two.

[Top]

See also

[Top]




  View Live Article   This article is from Wikipedia. All text is available under the terms of the GNU Free Documentation License