数字转换器

精确转换二进制、十进制、十六进制和八进制数制

2
10
16
8

比特信息

Bits

0

Byte(s)

0

Sign

Positive

IEEE 754

不是浮点

转换历史

还没有

关于数字系统

Binary (Base 2)

Uses only two digits: 0 and 1. Widely used in computing and digital systems because it can be easily represented by electronic switches (on/off).

Decimal (Base 10)

人类使用的标准数字系统。使用从 0 到 9 的 10 位数字。每个数字的位置代表 10 的幂。

Hexadecimal (Base 16)

使用 16 个符号:0-9 和 A-F。通常用于计算,以更紧凑和人类可读的形式表示二进制数据。

Octal (Base 8)

使用从 0 到 7 的 8 位数字。历史上用于计算,但与十六进制相比,今天不太常见。

转换示例

10102 = 1010 = A16 = 128

25510 = 111111112 = FF16 = 3778

1A316 = 41910 = 1101000112 = 6438

758 = 6110 = 1111012 = 3D16

Related Tools