Base-N Converter (2-36)

Free online Base-N converter (2-36). Convert between any base from 2 to 36, supports fractions and BigInt integers, pure JS.

Uso

Características

  • 支持 2-36 进制任意互转
  • 支持小数(通过重复乘法,可配置精度)
  • 支持大整数(用 BigInt 避免精度丢失)
  • 36 进制 = 0-9 + a-z,大写自动转小写

Casos de uso

  • 10 进制 255 → 16 进制 ff
  • 10 进制 0.625 → 2 进制 0.101
  • 16 进制 ff → 36 进制 73
  • 2 进制 1010 → 10 进制 10

Agent API Usage

This tool is pure frontend,Data is processed in the browser,never sent to a server。 manifest 中 api_url 为空,/api/hexconvert/ endpoint does not exist(返回 404)。 Agent 请读取 schema.json 理解字段,Please execute the tool logic in the browser first。
// Step 1: 读取工具 Schema
GET https://clawam.com/tools/hexconvert/schema.json

// Step 2: 在浏览器中执行工具逻辑
// 进制互转 在工具页 JS 中实现