Share
/tools/hex-to-binary-converter.php
二进制数字系统或以 2 为基数的数字系统使用两个符号 0 和 1 表示数值。更具体地说,通常的 base-2 系统是基数为 2 的位置表示法。由于二进制系统在使用逻辑门的数字电子电路中直接实现,因此所有现代计算机都在内部使用二进制系统。
In mathematics and computer science, hexadecimal (also base 16, or hex) is a positional numeral system with a radix, or base, of 16. It uses sixteen distinct symbols, most often the symbols 0–9 to represent values zero to nine, and A, B, C, D, E, F (or alternatively a–f) to represent values ten to fifteen. For example, the hexadecimal number 2AF3 is equal, in decimal, to (2 × 163) + (10 × 162) + (15 × 161) + (3 × 160) , or 10,995.
Each hexadecimal digit represents four binary digits (bits) (also called a "nibble"), and the primary use of hexadecimal notation is as a human-friendly representation of binary coded values in computing and digital electronics. For example, byte values can range from 0 to 255 (decimal) but may be more conveniently represented as two hexadecimal digits in the range 00 through FF. Hexadecimal is also commonly used to represent computer memory addresses.
Source:
Wikipedia
AKA:
二进制转换器、hex2binary、十六进制字符串、base-2、base-16、二进制到十六进制、十六进制到二
|