This tip was printed from the MalekTips Computer and Technology Help and Tips website at http://malektips.com.

Windows XP and DOS - Hexadecimal to Decimal Conversion on the Command Line

SUMMARY: Download a Windows XP command line tool to simply convert decimal numbers to hexadecimal and vice-versa.

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


 


Press the "print" button on your browser or select "File" - "Print" to print this tip. Then, return to Windows XP and DOS - Hexadecimal to Decimal Conversion on the Command Line
 
Standard disclaimer applies - read http://malektips.com/disclaim.html.