<div dir="ltr"><div class="gmail_extra"></div><br>On Wed, Dec 7, 2016 at 9:07 PM, Mikhail V <<a href="mailto:mikhailwas@gmail.com">mikhailwas@gmail.com</a>> wrote:<br>><br>> it somehow settled in<br>> peoples' minds that hex reference should be preferred, for no solid reason IMO.<br><br>I may be showing my age, but all the facts that I remember about ASCII codes are in hex:<br><br>1. SPACE is 0x20 followed by punctuation symbols.<br>2. Decimal digits start at 0x30 with '0' = 0x30, '1' = 0x31, ...<br>3. @ is 0x40 followed by upper-case letter: 'A' = 0x41, 'B' = 0x42, ...<br>4. Lower-case letters are offset by 0x20 from the uppercase ones: 'a' = 0x61, 'b' = 0x62, ...<br><br>Unicode is also organized around hexadecimal codes with various scripts positioned in sections that start at round hexadecimal numbers.  For example Cyrillic is at 0x0400 through 0x4FF <<a href="http://unicode.org/charts/PDF/U0400.pdf">http://unicode.org/charts/PDF/U0400.pdf</a>>.<br><br>The only decimal fact I remember about Unicode is that the largest code-point is 1114111 - a palindrome!<br></div>