number_base_convert
Convert a number string between any two bases in the range 2-36. Provide the value, source base, and target base to perform the conversion.
Instructions
Convert a number between different bases (binary, octal, decimal, hexadecimal, or any base 2-36).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| value | Yes | The number string to convert | |
| from_base | No | Source base (2-36, default: 10) | |
| to_base | No | Target base (2-36, default: 16) |