| You are here: | About>Computing & Technology>C / C++ / C#> Glossary> H> Hexadecimal - Definition |
![]() | C / C++ / C# |
Elsewhere on the Web"Definition of Hexadecimal"Definition: Hexadecimal is base 16 arithmetic where each digit is a value from 0 to 15, rather than the 0-9 of base 10. The decimal numbers after 9 are represented by the letters A to F where
A16= 1010 Its a concise way of expressing numbers. 25510 = FF16. FF = 15*16 + 15. Each digit to the left is 16 times the previous one 40016 = 4*256 = 1024. In C, C++ and C# numbers are represented as hexadecimal by putting 0x in front. E.g. 0x300 is the same as 768. Hexadecimal is a very convenient way of showing binary numbers as every 4 binary digits can be shown as one hexadecimal digit. Glossary:A B C D E F G H I J K L M N O P Q R S T U V W X Y ZAlso Known As: hex,base 16 Examples: I converted 24710 into hexadecimal. The answer was F716. 10112 = B16 Elsewhere on the Web |
Las Vegas on a BudgetFind a BargainHotel DealsCheap EatsFree AttractionsEntertainment for Less |
All Topics | Email Article | Print this Page | | ![]() |
| Advertising Info | News & Events | Work at About | SiteMap | Reprints | Help | Our Story | Be a Guide |
| User Agreement | Ethics Policy | Patent Info. | Privacy Policy | ©2008 About, Inc., A part of The New York Times Company. All rights reserved. |


