Hexadecimal to Decimal Conversion on the Command Line

By | 2007-04-14

Computer programmers and system engineers often need to convert hexadecimal numbers such as FF to decimal numbers (255) and vice-versa, but don”t want to open up the Windows XP calculator tool?

The Sysinternals website, part of Microsoft TechNet, offers a free DOS hexadecimal to decimal conversion program called hex2dec. Simply download a zip file, unzip the executable inside hex2dec.zip to your main Windows directory, and you can convert numbers on the command line like so:

Convert hexadecimal 77 to decimal

C:\>hex2dec 0x77

Hex2dec – converts hex to decimal and vice versa
Copyright (C) 2004 Mark Russinovich
Sysinternals – www.sysinternals.com

0x77 = 119

Convert decimal 3243 to hexadecimal

C:\>hex2dec 3243

Hex2dec – converts hex to decimal and vice versa
Copyright (C) 2004 Mark Russinovich
Sysinternals – www.sysinternals.com

3243 = 0xCAB

Sysinternals Hex2dec – http://www.microsoft.com/technet/sysinternals/
Miscellaneous/Hex2dec.mspx

Author: dwirch

Derek Wirch is a seasoned IT professional with an impressive career dating back to 1986. He brings a wealth of knowledge and hands-on experience that is invaluable to those embarking on their journey in the tech industry.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.