Hexadecimal

= HEX, = hex 1) шестнадцатеричная система счисления представление чисел в системе счисления с основанием 16 (цифры 0-9 и A, B, C, D, E, F). Отметим, что буквы A-F могут записываться в любом регистре. Соотношение чисел в шестнадцатеричной, десятичной и двоичных системах приведено в таблице. Из неё видно, что преобразовывать числа из двоичной в шестнадцатеричную систему и обратно очень легко и запись в шестнадцатеричной системе намного более компактная, поэтому программисты обычно пользуются шестнадцатеричной системой счисления вместо двоичной 2) шестнадцатеричное число (hexadecimal number) 3) шестнадцатеричный Смотри также: able, binary, decimal, digit, hex calculator, octal, radix

Англо-русский словарь компьютерных терминов

Hexadecimal

adjective of, relating to, or being a number system with a base of 16 • hexadecimal noun

Merriam-Webster's Collegiate Dictionary

Hexadecimal

(Or "hex") Base 16. A number representation using the digits 0-9, with their usual meaning, plus the letters A-F (or a-f) to represent hexadecimal digits with values of (decimal) 10 to 15. The right-most digit counts ones, the next counts multiples of 16, then 16^2 = 256, etc. For example, hexadecimal BEAD is decimal 48813. There are many conventions for distinguishing hexadecimal numbers from decimal or other bases in programs. In C for example, the prefix "0x" is used, e.g. 0x694A11. Hexadecimal is more succinct than binary for representing bit-masks, machines addresses, and other low-level constants but it is still reasonably easy to split a hex number into different bit positions, e.g. the top 16 bits of a 32-bit word are the first four hex digits.

Free Online Dictionary of Computing