Share
/tools/hex-to-binary-converter.php
Hệ thống số nhị phân, hoặc hệ thống số cơ sở 2, đại diện cho các giá trị số sử dụng hai ký hiệu, 0 và 1. Cụ thể hơn, hệ cơ số 2 thông thường là một ký hiệu vị trí với radx là 2. Do việc thực hiện đơn giản trong mạch điện tử kỹ thuật số sử dụng cổng logic, hệ thống nhị phân được sử dụng nội bộ bởi tất cả các máy tính hiện đại.
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:
dịch nhị phân, hex2binary, hex string, cơ sở-2, cơ sở-16, nhị phân sang hex, hex to bin
|