Converts a number in any base N to base M (where N and M >= 2 and <= 36).
Download the action, unzip it, and double the resulting lbaction file to install it.
The command accepts the following syntax:
<number>[[_<source-radix>] <dest-radix>]
- If
source-radix
is omitted, it will try to guess between base 2, 16 and 36 (defaults to 10 otherwise). - If
dest-radix
is omitted, the number is converted to several common bases (binary, octal, decimal and hexidecimal).
0x81F9.4 10
returns33273.25
81F9_16 2
returns1000000111111001
7501_8 2
returns111101000001