Hexadecimal

Last updated

Hexadecimal (hex for short) is a positional numeral system for representing a numeric value as base 16. For the most common convention, a digit is represented as "0" to "9" like for decimal and as a letter of the alphabet from "A" to "F" (either upper or lower case) for the digits with decimal value 10 to 15.

Contents

As typical computer hardware is binary in nature and that hex is power of 2, the hex representation is often used in computing as a dense representation of binary information. A hex digit represents 4 contiguous bits known as a nibble. [1] An 8-bit byte is two hex digits, such as 2C.

Special notation is often used to indicate that a number is hex. In mathematics, a subscript is typically used to specify the base. For example, the decimal value 491 would be expressed in hex as 1EB16. In computer programming, various notations are used. In C and many related languages, the prefix 0x is used. For example, 0x1EB.

Written representation

Common convention

Typically, a hex representation convention allows either lower or upper case letters and treats the letter the same regardless of its case.

Often when rendering non-textual data, a value stored in memory is displayed as a sequence of hex digits with spaces that between values. For instance, in the following hex dump, each 8-bit byte is a 2-digit hex number, with spaces between them, while the 32-bit offset at the start is an 8-digit hex number.

0000000057696B6970656469612C2074686520660000001072656520656E6379636C6F706564696100000020207468617420616E796F6E652063616E0000003020656469742C20696E636C7564696E670000004020796F752028616E64206D652921

Identification

There are several conventions for expressing that a number is represented as hex.

Implicit

In some contexts, a number is always written as hex, and therefore, needs no identification notation.

Alternative symbols

Bruce Alan Martin's hex notation proposal Bruce Martin hexadecimal notation proposal.png
Bruce Alan Martin's hex notation proposal
Ronald O. Whitaker's hex notation proposal. Base-16 digits.svg
Ronald O. Whitaker's hex notation proposal.

Notable other hex representations that use symbols other than letters "A" through "F" to represent the digits above 9 include;

Sign

The hex system can express negative numbers the same way as in decimal, by putting a minus sign (−) before the number to indicate that it is negative.

Bit pattern

Hex can express the bit pattern in a processor, so a sequence of hex digits may represent a signed or even a floating-point value. This way, the negative number −4210 can be written as FFFF FFD6 in a 32-bit CPU register (in two's complement), as C228 0000 in a 32-bit FPU register or C045 0000 0000 0000 in a 64-bit FPU register (in the IEEE floating-point standard).

Exponential notation

Just as decimal numbers can be represented in exponential notation, so too can hex numbers. P notation uses the letter P (or p, for "power"), whereas E (or e) serves a similar purpose in decimal E notation. The number after the P is decimal and represents the binary exponent. Increasing the exponent by 1 multiplies by 2, not 16: 20p0 = 10p1 = 8p2 = 4p3 = 2p4 = 1p5. Usually, the number is normalized so that the hex digits start with 1. (zero is usually 0 with no P).

Example: 1.3DEp42 represents 1.3DE16 × 24210.

P notation is required by the IEEE 754-2008 binary floating-point standard and can be used for floating-point literals in the C99 edition of the C programming language. [22] Using the %a or %A conversion specifiers, this notation can be produced by implementations of the printf family of functions following the C99 specification [23] and Single Unix Specification (IEEE Std 1003.1) POSIX standard. [24]

Verbal representation

Hex finger-counting scheme Hexadecimal-counting.jpg
Hex finger-counting scheme

Since there were no traditional numerals to represent the quantities from ten to fifteen, alphabetic letters were re-employed as a substitute. Most European languages lack non-decimal-based words for some of the numerals eleven to fifteen. Some people read hex numbers digit by digit, like a phone number, or using the NATO phonetic alphabet, the Joint Army/Navy Phonetic Alphabet, or a similar ad-hoc system. In the wake of the adoption of hex among IBM System/360 programmers, Magnuson (1968) [25] suggested a pronunciation guide that gave short names to the letters of hex – for instance, "A" was pronounced "ann", B "bet", C "chris", etc. [25] Another naming-system was published online by Rogers (2007) [26] that tries to make the verbal representation distinguishable in any case, even when the actual number does not contain numbers A–F. Examples are listed in the tables below. Yet another naming system was elaborated by Babb (2015), based on a joke in Silicon Valley . [27] The system proposed by Babb was further improved by Atkins-Bittner in 2015-2016. [28]

Others have proposed using the verbal Morse code conventions to express four-bit hex digits, with "dit" and "dah" representing zero and one, respectively, so that "0000" is voiced as "dit-dit-dit-dit" (....), dah-dit-dit-dah (-..-) voices the digit with a value of nine, and "dah-dah-dah-dah" (----) voices the hex digit for decimal 15.

Systems of counting on digits have been devised for both binary and hex. Arthur C. Clarke suggested using each finger as an on/off bit, allowing finger counting from zero to 102310 on ten fingers. [29] Another system for counting up to FF16 (25510) is illustrated on the right.

Magnuson (1968) [25]
naming method
HexNameDecimal
Aann10
Bbet11
Cchris12
Ddot13
Eernest14
Ffrost15
1Aannteen26
A0annty160
5Bfifty bet91
A,01Cannty
christeen
40,990
1,AD0annteen
dotty
6,864
3,A7Dthirty ann
seventy dot
14,973
Rogers (2007) [26]
naming method
HexNameDecimal
Aten10
Beleven11
Ctwelve12
Ddraze13
Eeptwin14
Ffim15
10tex16
11oneteek17
1Ffimteek31
50fiftek80
C0twelftek192
100hundrek256
1,000thousek4,096
3Ethirtek eptwin62
E1eptek one225
C4Atwelve hundrek
fourtek ten
3,146
1,743one thousek
seven hundrek
fourtek three
5,955
Atkins-Bittner (2015) [28]
naming method
HexNameDecimal
Aae10
Bbee11
Ccee12
Ddee13
Eee14
Feff15
A0atta160
B0bitta176
C0citta192
D0dickety208
E0eckity224
F0fleventy240
1Aabteen26
1Bbibteen27
1Ccibteen28
1Ddibbleteen29
1Eebbleteen30
1Ffleventeen31
100one bitey256
10,000one millby65,536
100,000,000one billby4,294,967,296

Conversion

Binary conversion

The programmable RPN-calculator HP-16C Computer Scientist from 1982 was designed for programmers. One of its key features was the conversion between different numeral systems (note hex number in display). Hewlett-Packard Model HP-16C Programmable RPN Calculator, HP's First and Only Calculator esp. for Programmers, built 1982-1989 (edited to rectangular, V2).jpg
The programmable RPN-calculator HP-16C Computer Scientist from 1982 was designed for programmers. One of its key features was the conversion between different numeral systems (note hex number in display).

Most computers manipulate binary data, but it is difficult for humans to work with a large number of digits for even a relatively small binary number. Although most humans are familiar with the base 10 system, it is much easier to map binary to hex than to decimal because each hex digit maps to a whole number of bits (410). This example converts 11112 to base ten. Since each position in a binary numeral can contain either a 1 or a 0, its value may be easily determined by its position from the right:

Therefore:

11112= 810 + 410 + 210 + 110
 = 1510

With little practice, mapping 11112 to F16 in one step becomes easy. The advantage of using hex rather than decimal increases rapidly with the size of the number. When the number becomes large, conversion to decimal is very tedious. However, when mapping to hex, it is trivial to regard the binary string as 4-digit groups and map each to a single hex digit. [30]

This example shows the conversion of a binary number to decimal, mapping each digit to the decimal value, and adding the results.

(1001011100)2= 51210 + 6410 + 1610 + 810 + 410
 = 60410

Compare this to the conversion to hex, where each group of four digits can be considered independently and converted directly:

(1001011100)2=0010 0101 11002
 =25C16
 =25C16

The conversion from hex to binary is equally direct. [30]

Other simple conversions

Although quaternary (base 4) is little used, it can easily be converted to and from hex or binary. Each hex digit corresponds to a pair of quaternary digits, and each quaternary digit corresponds to a pair of binary digits. In the above example 2 5 C16 = 02 11 304.

The octal (base 8) system can also be converted with relative ease, although not quite as trivially as with bases 2 and 4. Each octal digit corresponds to three binary digits, rather than four. Therefore, we can convert between octal and hex via an intermediate conversion to binary followed by regrouping the binary digits in groups of either three or four.

Division-remainder in source base

As with all bases there is a simple algorithm for converting a representation of a number to hex by doing integer division and remainder operations in the source base. In theory, this is possible from any base, but for most humans, only decimal and for most computers, only binary (which can be converted by far more efficient methods) can be easily handled with this method.

Let d be the number to represent in hex, and the series hihi−1...h2h1 be the hex digits representing the number.

  1. i ← 1
  2. hi ← d mod 16
  3. d ← (d − hi) / 16
  4. If d = 0 (return series hi) else increment i and go to step 2

"16" may be replaced with any other base that may be desired.

The following is a JavaScript implementation of the above algorithm for converting any number to a hex in String representation. Its purpose is to illustrate the above algorithm. To work with data seriously, however, it is much more advisable to work with bitwise operators.

functiontoHex(d){varr=d%16;if(d-r==0){returntoChar(r);}returntoHex((d-r)/16)+toChar(r);}functiontoChar(n){constalpha="0123456789ABCDEF";returnalpha.charAt(n);}

Conversion through addition and multiplication

A hex multiplication table Hexadecimal multiplication table.svg
A hex multiplication table

It is also possible to make the conversion by assigning each place in the source base the hex representation of its place value — before carrying out multiplication and addition to get the final representation. For example, to convert the number B3AD to decimal, one can split the hex number into its digits: B (1110), 3 (310), A (1010) and D (1310), and then get the final result by multiplying each decimal representation by 16p (p being the corresponding hex digit position, counting from right to left, beginning with 0). In this case, we have that:

B3AD = (11 × 163) + (3 × 162) + (10 × 161) + (13 × 160)

which is 45997 in base 10.

Tools for conversion

Many computer systems provide a calculator utility capable of performing conversions between the various radices frequently including hex.

In Microsoft Windows, the Calculator, on its Programmer mode, allows conversions between hex and other common programming bases.

Elementary arithmetic

Elementary operations such as division can be carried out indirectly through conversion to an alternate numeral system, such as the commonly used decimal system or the binary system where each hex digit corresponds to four binary digits.

Alternatively, one can also perform elementary operations directly within the hex system itself — by relying on its addition/multiplication tables and its corresponding standard algorithms such as long division and the traditional subtraction algorithm.

Real numbers

Rational numbers

As with other numeral systems, the hex system can be used to represent rational numbers, although repeating expansions are common since sixteen (1016) has only a single prime factor: two.

For any base, 0.1 (or "1/10") is always equivalent to one divided by the representation of that base value in its own number system. Thus, whether dividing one by two for binary or dividing one by sixteen for hex, both of these fractions are written as 0.1. Because the radix 16 is a perfect square (42), fractions expressed in hex have an odd period much more often than decimal ones, and there are no cyclic numbers (other than trivial single digits). Recurring digits are exhibited when the denominator in lowest terms has a prime factor not found in the radix; thus, when using hex notation, all fractions with denominators that are not a power of two result in an infinite string of recurring digits (such as thirds and fifths). This makes hex (and binary) less convenient than decimal for representing rational numbers since a larger proportion lies outside its range of finite representation.

All rational numbers finitely representable in hex are also finitely representable in decimal, duodecimal and sexagesimal: that is, any hex number with a finite number of digits also has a finite number of digits when expressed in those other bases. Conversely, only a fraction of those finitely representable in the latter bases are finitely representable in hex. For example, decimal 0.1 corresponds to the infinite recurring representation 0.19 in hex. However, hex is more efficient than duodecimal and sexagesimal for representing fractions with powers of two in the denominator. For example, 0.062510 (one-sixteenth) is equivalent to 0.116, 0.0912, and 0;3,4560.

nDecimal
Prime factors of: base, b = 10: 2, 5;
b − 1 = 9: 3;
b + 1 = 11: 11
Hexadecimal
Prime factors of: base, b = 1610 = 10: 2; b − 1 = 1510 = F: 3, 5; b + 1 = 1710 = 11: 11
ReciprocalPrime factorsPositional representation
(decimal)
Positional representation
(hex)
Prime factorsReciprocal
21/220.50.821/2
31/330.3333... = 0.30.5555... = 0.531/3
41/420.250.421/4
51/550.20.351/5
61/62, 30.160.2A2, 31/6
71/770.1428570.24971/7
81/820.1250.221/8
91/930.10.1C731/9
101/102, 50.10.192, 51/A
111/11110.090.1745DB1/B
121/122, 30.0830.152, 31/C
131/13130.0769230.13BD1/D
141/142, 70.07142850.12492, 71/E
151/153, 50.060.13, 51/F
161/1620.06250.121/10
171/17170.05882352941176470.0F111/11
181/182, 30.050.0E382, 31/12
191/19190.0526315789473684210.0D79435E5131/13
201/202, 50.050.0C2, 51/14
211/213, 70.0476190.0C33, 71/15
221/222, 110.0450.0BA2E82, B1/16
231/23230.04347826086956521739130.0B21642C859171/17
241/242, 30.04160.0A2, 31/18
251/2550.040.0A3D751/19
261/262, 130.03846150.09D82, D1/1A
271/2730.0370.097B425ED31/1B
281/282, 70.035714280.09242, 71/1C
291/29290.03448275862068965517241379310.08D3DCB1D1/1D
301/302, 3, 50.030.082, 3, 51/1E
311/31310.0322580645161290.084211F1/1F
321/3220.031250.0821/20
331/333, 110.030.07C1F3, B1/21
341/342, 170.029411764705882350.0782, 111/22
351/355, 70.02857140.0755, 71/23
361/362, 30.0270.071C2, 31/24
371/37370.0270.06EB3E453251/25
381/382, 190.026315789473684210.0435E50D79435E4AC62B42, 131/26
391/393, 130.02564100.0693, D1/27
401/402, 50.0250.062, 51/28
411/41410.024390.063E9538D283B5B62FB8291/29
421/422, 3, 70.02380950.06182, 3, 71/2A
431/43430.0232558139534883720930.05F417D2B1/2B
441/442, 110.02270.05D17452, B1/2C
451/453, 50.020.05B3, 51/2D
461/462, 230.021739130434787658695670.0590B21642C9C4EF44A92, 171/2E
471/47470.02127659574468085106382978723404255319148936170.0572620AE4C415C9882B9312F1/2F
481/482, 30.020830.052, 31/30

Irrational numbers

The table below gives the expansions of some common irrational numbers in decimal and hex.

NumberPositional representation
DecimalHex
√2 (the length of the diagonal of a unit square)1.414213562373095048...1.6A09E667F3BCD...
√3 (the length of the diagonal of a unit cube)1.732050807568877293...1.BB67AE8584CAA...
√5 (the length of the diagonal of a 1×2 rectangle)2.236067977499789696...2.3C6EF372FE95...
φ (phi, the golden ratio = (1+5)/2)1.618033988749894848...1.9E3779B97F4A...
π (pi, the ratio of circumference to diameter of a circle)3.141592653589793238462643
383279502884197169399375105...
3.243F6A8885A308D313198A2E0
3707344A4093822299F31D008...
e (the base of the natural logarithm)2.718281828459045235...2.B7E151628AED2A6B...
τ (the Thue–Morse constant)0.412454033640107597...0.6996 9669 9669 6996...
γ (the limiting difference between the harmonic series and the natural logarithm)0.577215664901532860...0.93C467E37DB0C7A4D1B...

Powers

The first 16 powers of 2 are below as hex to show relative simplicity compared to decimal representation.

2xHexDecimal
2011
2122
2244
2388
241016
252032
264064
2780128
28100256
29200512
2104001,024
2118002,048
2121,0004,096
2132,0008,192
2144,00016,384
2158,00032,768
21610,00065,536

Cultural history

The traditional Chinese units of measurement were base-16. For example, one jīn (斤) in the old system equals sixteen taels. The suanpan (Chinese abacus) can be used to perform hex calculations such as additions and subtractions. [31]

As with the duodecimal system, there have been occasional attempts to promote hex as the preferred numeral system. These attempts often propose specific pronunciation and symbols for the individual numerals. [32] Some proposals unify standard measures so that they are multiples of 16. [33] [34] An early such proposal was put forward by John W. Nystrom in Project of a New System of Arithmetic, Weight, Measure and Coins: Proposed to be called the Tonal System, with Sixteen to the Base, published in 1862. [35] Nystrom among other things suggested hexadecimal time, which subdivides a day by 16, so that there are 16 "hours" (or "10 tims", pronounced tontim) in a day. [36]

The word hexadecimal is first recorded in 1952. [37] It is macaronic in the sense that it combines Greek ἕξ (hex) "six" with Latinate -decimal. The all-Latin alternative sexadecimal (compare the word sexagesimal for base 60) is older, and sees at least occasional use from the late 19th century. [38] It is still in use in the 1950s in Bendix documentation. Schwartzman (1994) argues that use of sexadecimal may have been avoided because of its suggestive abbreviation to sex. [39] Many western languages since the 1960s have adopted terms equivalent in formation to hexadecimal (e.g. French hexadécimal, Italian esadecimale, Romanian hexazecimal, Serbian хексадецимални, etc.) but others have introduced terms which substitute native words for "sixteen" (e.g. Greek δεκαεξαδικός, Icelandic sextándakerfi, Russian шестнадцатеричной etc.)

Terminology and notation did not become settled until the end of the 1960s. In 1969, Donald Knuth argued that the etymologically correct term would be senidenary, or possibly sedenary, a Latinate term intended to convey "grouped by 16" modelled on binary, ternary, quaternary, etc. According to Knuth's argument, the correct terms for decimal and octal arithmetic would be denary and octonary, respectively. [40] Alfred B. Taylor used senidenary in his mid-1800s work on alternative number bases, although he rejected base 16 because of its "incommodious number of digits". [41] [42]

The now-current notation using the letters A to F establishes itself as the de facto standard beginning in 1966, in the wake of the publication of the Fortran IV manual for IBM System/360, which (unlike earlier variants of Fortran) recognizes a standard for entering hexadecimal constants. [43] As noted above, alternative notations were used by NEC (1960) and The Pacific Data Systems 1020 (1964). The standard adopted by IBM seems to have become widely adopted by 1968, when Bruce Alan Martin in his letter to the editor of the CACM complains that

With the ridiculous choice of letters A, B, C, D, E, F as hexadecimal number symbols adding to already troublesome problems of distinguishing octal (or hex) numbers from decimal numbers (or variable names), the time is overripe for reconsideration of our number symbols. This should have been done before poor choices gelled into a de facto standard!

Martin's argument was that use of numerals 0 to 9 in nondecimal numbers "imply to us a base-ten place-value scheme": "Why not use entirely new symbols (and names) for the seven or fifteen nonzero digits needed in octal or hex. Even use of the letters A through P would be an improvement, but entirely new symbols could reflect the binary nature of the system". [12] He also argued that "re-using alphabetic letters for numerical digits represents a gigantic backward step from the invention of distinct, non-alphabetic glyphs for numerals sixteen centuries ago" (as Brahmi numerals, and later in a Hindu–Arabic numeral system), and that the recent ASCII standards (ASA X3.4-1963 and USAS X3.4-1968) "should have preserved six code table positions following the ten decimal digits -- rather than needlessly filling these with punctuation characters" (":;<=>?") that might have been placed elsewhere among the 128 available positions.

Base16

Base16 is a binary to text encoding in the family that also contains Base32, Base58, and Base64. Data is broken into 4-bit sequences, and each value (0-15) is encoded as a character. Although any 16 characters could be used, in practice, the ASCII digits "0"–"9" and letters "A"–"F" (or "a"–"f") are used to align with the typical notation for hex numbers.

Support for Base16 encoding is ubiquitous in modern computing. It is the basis for the W3C standard for URL percent encoding, where a character is replaced with a percent sign "%" and its Base16-encoded form. Most modern programming languages directly include support for formatting and parsing Base16-encoded numbers.

Advantages of Base16 encoding include:

Disadvantages include:

See also

References

  1. "The hexadecimal system". Ionos Digital Guide. Archived from the original on 2022-08-26. Retrieved 2022-08-26.
  2. "The Unicode Standard, Version 7" (PDF). Unicode. Archived (PDF) from the original on 2016-03-03. Retrieved 2018-10-28.
  3. "Modula-2 – Vocabulary and representation". Modula −2. Archived from the original on 2015-12-13. Retrieved 2015-11-01.
  4. "An Introduction to VHDL Data Types". FPGA Tutorial. 2020-05-10. Archived from the original on 2020-08-23. Retrieved 2020-08-21.
  5. "*read-base* variable in Common Lisp". CLHS. Archived from the original on 2016-02-03. Retrieved 2015-01-10.
  6. "*print-base* variable in Common Lisp". CLHS. Archived from the original on 2014-12-26. Retrieved 2015-01-10.
  7. MSX is Coming — Part 2: Inside MSX Archived 2010-11-24 at the Wayback Machine Compute!, issue 56, January 1985, p. 52
  8. BBC BASIC programs are not fully portable to Microsoft BASIC (without modification) since the latter takes & to prefix octal values. (Microsoft BASIC primarily uses &O to prefix octal, and it uses &H to prefix hex, but the ampersand alone yields a default interpretation as an octal prefix.
  9. Knuth, Donald Ervin (1986). The TeXbook. Duane Bibby. Reading, Mass. ISBN   0-201-13447-0. OCLC   12973034.{{cite book}}: CS1 maint: location missing publisher (link)
  10. "Hexadecimal web colors explained". Archived from the original on 2006-04-22. Retrieved 2006-01-11.
  11. "ISO-8859-1 (ISO Latin 1) Character Encoding". www.ic.unicamp.br. Archived from the original on 2019-06-29. Retrieved 2019-06-26.
  12. 1 2 3 Martin, Bruce Alan (October 1968). "Letters to the editor: On binary notation". Communications of the ACM . 11 (10). Associated Universities Inc.: 658. doi: 10.1145/364096.364107 . S2CID   28248410.
  13. 1 2 Whitaker, Ronald O. (January 1972). Written at Indianapolis, Indiana, US. "More on man/machine" (PDF). Letters. Datamation . Vol. 18, no. 1. Barrington, Illinois, US: Technical Publishing Company. p. 103. Archived (PDF) from the original on 2022-12-05. Retrieved 2022-12-24. (1 page)
  14. 1 2 Whitaker, Ronald O. (1976-08-10) [1975-02-24]. "Combined display and range selector for use with digital instruments employing the binary numbering system" (PDF). Indianapolis, Indiana, US. US Patent 3974444A. Archived (PDF) from the original on 2022-12-24. Retrieved 2022-12-24. (7 pages)
  15. 1 2 3 4 5 6 7 Savard, John J. G. (2018) [2005]. "Computer Arithmetic". quadibloc. The Early Days of Hexadecimal. Archived from the original on 2018-07-16. Retrieved 2018-07-16.
  16. "2.1.3 Sexadecimal notation". G15D Programmer's Reference Manual (PDF). Los Angeles, CA, US: Bendix Computer, Division of Bendix Aviation Corporation. p. 4. Archived (PDF) from the original on 2017-06-01. Retrieved 2017-06-01. This base is used because a group of four bits can represent any one of sixteen different numbers (zero to fifteen). By assigning a symbol to each of these combinations, we arrive at a notation called sexadecimal (usually "hex" in conversation because nobody wants to abbreviate "sex"). The symbols in the sexadecimal language are the ten decimal digits and on the G-15 typewriter, the letters "u", "v", "w", "x", "y", and "z". These are arbitrary markings; other computers may use different alphabet characters for these last six digits.
  17. Gill, S.; Neagher, R. E.; Muller, D. E.; Nash, J. P.; Robertson, J. E.; Shapin, T.; Whesler, D. J. (1956-09-01). Nash, J. P. (ed.). "ILLIAC Programming – A Guide to the Preparation of Problems For Solution by the University of Illinois Digital Computer" (PDF). bitsavers.org (Fourth printing. Revised and corrected ed.). Urbana, Illinois, US: Digital Computer Laboratory, Graduate College, University of Illinois. pp. 3–2. Archived (PDF) from the original on 2017-05-31. Retrieved 2014-12-18.
  18. Royal Precision Electronic Computer LGP – 30 Programming Manual. Port Chester, New York: Royal McBee Corporation. April 1957. Archived from the original on 2017-05-31. Retrieved 2017-05-31. (NB. This somewhat odd sequence was from the next six sequential numeric keyboard codes in the LGP-30's 6-bit character code.)
  19. Manthey, Steffen; Leibrandt, Klaus (2002-07-02). "Die PERM und ALGOL" (PDF) (in German). Archived (PDF) from the original on 2018-10-03. Retrieved 2018-05-19.
  20. NEC Parametron Digital Computer Type NEAC-1103 (PDF). Tokyo, Japan: Nippon Electric Company Ltd. 1960. Cat. No. 3405-C. Archived (PDF) from the original on 2017-05-31. Retrieved 2017-05-31.
  21. "SN5446A, '47A, '48, SN54LS47, 'LS48, 'LS49, SN7446A, '47A, '48, SN74LS47, 'LS48, 'LS49 BCD-to-Seven-Segment Decoders/Drivers". Dallas, Texas, US: Texas Instruments Incorporated. March 1988 [1974]. SDLS111. Archived (PDF) from the original on 2021-10-20. Retrieved 2021-09-15. (29 pages)
  22. "ISO/IEC 9899:1999 – Programming languages – C". ISO. Iso.org. 2011-12-08. Archived from the original on 2016-10-10. Retrieved 2014-04-08.
  23. "Rationale for International Standard – Programming Languages – C" (PDF). Open Standards. 5.10. April 2003. pp. 52, 153–154, 159. Archived (PDF) from the original on 2016-06-06. Retrieved 2010-10-17.
  24. The IEEE and The Open Group (2013) [2001]. "dprintf, fprintf, printf, snprintf, sprintf – print formatted output". The Open Group Base Specifications (Issue 7, IEEE Std 1003.1, 2013 ed.). Archived from the original on 2016-06-21. Retrieved 2016-06-21.
  25. 1 2 3 Magnuson, Robert A. (January 1968). "A hexadecimal pronunciation guide". Datamation. Vol. 14, no. 1. p. 45.
  26. 1 2 Rogers, S.R. (2007). "Hexadecimal number words". Intuitor. Archived from the original on 2019-09-17. Retrieved 2019-08-26.
  27. Babb, Tim (2015). "How to pronounce hexadecimal". Bzarg. Archived from the original on 2020-11-11. Retrieved 2021-01-01.
  28. 1 2 Atkins-Bittner, Tab (2015). "How to Pronounce Hexadecimal Numbers". xanthir.com. Retrieved 2025-01-08.
  29. Clarke, Arthur; Pohl, Frederik (2008). The Last Theorem . Ballantine. p.  91. ISBN   978-0007289981.
  30. 1 2 Mano, M. Morris; Ciletti, Michael D. (2013). Digital Design – With an Introduction to the Verilog HDL (Fifth ed.). Pearson Education. pp. 6, 8–10. ISBN   978-0-13-277420-8.
  31. "算盤 Hexadecimal Addition & Subtraction on a Chinese Abacus". totton.idirect.com. Archived from the original on 2019-07-06. Retrieved 2019-06-26.
  32. "Base 4^2 Hexadecimal Symbol Proposal". Hauptmech. Archived from the original on 2021-10-20. Retrieved 2008-09-04.
  33. "Intuitor Hex Headquarters". Intuitor. Archived from the original on 2010-09-04. Retrieved 2018-10-28.
  34. Niemietz, Ricardo Cancho (2003-10-21). "A proposal for addition of the six Hexadecimal digits (A-F) to Unicode" (PDF). ISO/IEC JTC1/SC2/WG2. Retrieved 2024-06-25.
  35. Nystrom, John William (1862). Project of a New System of Arithmetic, Weight, Measure and Coins: Proposed to be called the Tonal System, with Sixteen to the Base. Philadelphia: Lippincott.
  36. Nystrom (1862), p. 33: "In expressing time, angle of a circle, or points on the compass, the unit tim should be noted as integer, and parts thereof as tonal fractions, as 5·86 tims is five times and metonby [*"sutim and metonby" John Nystrom accidentally gives part of the number in decimal names; in Nystrom's pronunciation scheme, 5=su, 8=me, 6=by, c.f. unifoundry.com Archived 2021-05-19 at the Wayback Machine ]."
  37. C. E. Fröberg, Hexadecimal Conversion Tables, Lund (1952).
  38. The Century Dictionary of 1895 has sexadecimal in the more general sense of "relating to sixteen". An early explicit use of sexadecimal in the sense of "using base 16" is found also in 1895, in the Journal of the American Geographical Society of New York, vols. 27–28, p. 197.
  39. Schwartzman, Steven (1994). The Words of Mathematics: An etymological dictionary of mathematical terms used in English. The Mathematical Association of America. p. 105. ISBN   0-88385-511-9. s.v. hexadecimal
  40. Knuth, Donald. (1969). The Art of Computer Programming, Volume 2. ISBN   0-201-03802-1. (Chapter 17.)
  41. Alfred B. Taylor, Report on Weights and Measures, Pharmaceutical Association, 8th Annual Session, Boston, 15 September 1859. See pages and 33 and 41.
  42. Alfred B. Taylor, "Octonary numeration and its application to a system of weights and measures", Proc Amer. Phil. Soc. Vol XXIV Archived 2016-06-24 at the Wayback Machine , Philadelphia, 1887; pages 296–366. See pages 317 and 322.
  43. IBM System/360 FORTRAN IV Language Archived 2021-05-19 at the Wayback Machine (1966), p. 13.