x868k.com / apps /

About

Base Convert allows you to easily and quickly convert 32-bit values between decimal, hexadecimal, binary, and octal. The layout is handy for programmers as it breaks the 32-bit value into two 16-bit and four 8-bit parts. There are 13 fields representing the same 32-bit value. Edit any field and the other fields will update in real-time. A custom keyboard makes input fast and easy.

Download

March 9, 2012: I chose to not renew my iOS Developer Program. Base Convert did not generate enough income to pay Apple's yearly $99 iOS Developer fee. I was not working on any other apps to help cover that fee so I decided to end the program. If and when I create another iOS app then Base Convert will return to the App Store. I want to thank those who did purchase Base Convert. Your support is appreciated.

Screenshot

Help

Base Convert's interface may at first appear odd but once you know how each field effects the 32-bit value you will appreciate the layout and how it breaks the 32-bit value into it's 16-bit and 8-bit parts.

Delete the right-most digit of the active field.
Clear the active field.
Clear all fields.
Shift left the bits in the active field.
The high bit is dropped and the low bit is replaced with zero.
Shift right the bits in the active field.
The low bit is dropped and the high bit is replaced with zero.
Rotate left the bits in the active field.
The high bit is moved into the low bit position.
Rotate right the bits in the active field.
The low bit is moved into the high bit position.

The End