answersLogoWhite

0

BED=BED. "Hex" is short for "hexadecimal", so it means the same.

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

What is the equivalent hexadecimal number for 13?

13 = D in hex. If you're using two digits to represent the hex number - its 0D


What is the hexadecimal equivalent of 111001000 2?

In hex, that would be 1C8


What is the Hexadecimal equivalent of space?

The space character in ASCII is CHR(32), so in HEX, that would be 0x20


Convert the following binary number 0100110100011110 to a hexadecimal number?

hex =7


What is the Binary equivalent of the Hexidecimal AB?

The hexadecimal number AB can be converted to binary by first converting each hex digit to its 4-bit binary equivalent. A in hexadecimal is 1010 in binary, and B is 1011 in binary. Therefore, the binary equivalent of AB is 10101011.


What is 111 in hex?

The decimal number 111 is written in hexadecimal as 6F.


What is the hexadecimal symbol to the binary number 1010?

Binary(1010) = Hex(A)


What is 1F in hexadecimal number system?

(1F)hex = (31)decimal


How is 16 represented in hexadecimal number system?

(10)hex = (16)decimal


What color is FF0000 HEX in web programming?

The hex code #FF0000 is pure red. Hexadecimal colors are given in Red, Green, Blue as a number in the hexadecimal number system. The number FF, in hex, is the same as the number 255 in decimal. Pure blue? #0000FF Pure green? #00FF00 And any of the 16 million or so other colors hex is capable of.


What does hexadecimal base 16 convert binary equal?

16 is the 4th power of 2. So a hexadecimal number is converted to binary by replacing each hex digit by the 4-bit binary number having the same value. Conversely, in converting binary to hexadecimal, we group every 4 bits starting at the decimal (binary?) point and replace it with the equivalent hex digit. For example, the hexadecimal number 3F9 in binary is 1111111001, because 3 in binary is 11, F (decimal 15) is 1111, and 9 is 1001.


How do you convert the binary number 10101010 into hex?

Convert each group of 4 bits into one hexadecimal digit. 1010 is "A" in hexadecimal, so this particular number is "AA".