A plugin to convert numbers in base 10 to other number bases, including their decimal places. You can insert this into pages and posts with a shortcode:
[base no="NUMBER" base="BASE TO CONVERT TO" prec="DECIMAL PLACES" show="SHOW BASE AS INDEX"]
For example, the following codes gives the following result:
[base no="1234" base="2" show="1"]
→ 10011010010₂[base no="123.4567" base="16" show="0"]
→ 7B.74EA
The script can also round up or down:
[base no="0.142857" base="12" prec="20"]
→ 0.186A348718B4610B5534The same, shortened to 3 places:
[base no="0.142857" base="12" prec="3"]
→ 0.187The same, shortened to 5 places:
[base no="0.142857" base="12" prec="5"]
→ 0.186A3