BIN2HEX
Converts a binary number to hexadecimal.
EngineeringEngineering & Science
What it does
Converts a binary number (base-2) to a hexadecimal number (base-16).
Syntax
BIN2HEX(number, [places])
Arguments
number(text) β The binary number.places(number) β Number of characters to use.
Examples
Binary to Hex
Convert 11111011 to Hex.
FORMULA
=BIN2HEX(11111011)
RESULT
FB
SAMPLE DATA
| A | |
|---|---|
| 1 | Binary |
| 2 | 11111011 |