encode_radix
Convert values between bases 2 and 36, including large numbers, to obtain the exact representation in a different numbering system.
Instructions
任意进制互转(2~36 进制,支持大数)。例:value=255, from_base=10, to_base=16 → ff
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| value | Yes | 要转换的数值(字符串形式) | |
| to_base | Yes | ||
| from_base | Yes |