answersLogoWhite

0

Decimal 30 = binary 11110. The decimal binary code (BCD), however, is 11 0000.

User Avatar

Wiki User

12y ago

What else can I help you with?

Continue Learning about Engineering

What is the binary code for 4?

14 decimal in binary is 11102. In octal it is 168 and in hexadecimal it is 0E16.


How do you write program decimal to binary in verilog?

To convert a decimal number to binary in Verilog, you can use the built-in reg or wire types to store the binary value. First, define a module and declare an input for the decimal number. You can then use an assignment statement to convert the decimal to binary by assigning the input directly to the output, as Verilog implicitly handles the conversion. For example: module decimal_to_binary(input [7:0] decimal, output reg [7:0] binary); always @(*) begin binary = decimal; // Implicit conversion from decimal to binary end endmodule This code will take an 8-bit decimal input and output its binary representation.


What is the binary code for B?

That depends what you mean by "B", and what you mean by "binary code" assuming that by "binary code", you actually mean a binary representation of it's ascii value, then the answer is 1000010. The ascii value of the character "B" is 66 in decimal, which is 1000010 is that value in binary. If on the other hand, you mean "what is the binary value of the hexidecimal number B?", then the answer is 1011.


How do you spell Quinn in binary code?

In binary: 10100010 11101010 11010010 11011100 11011100 00000000 In hexadecimal: 0x5175696E6E00 10100010 = 0x51 = 'Q' (ASCII character code 81 decimal) 11101010 = 0x75 = 'u' (ASCII character code 117 decimal) 11010010 = 0x69 = 'i' (ASCII character code 105 decimal) 11011100 = 0x6E = 'n' (ASCII character code 110 decimal) 11011100 = 0x6E = 'n' (ASCII character code 110 decimal) 11011100 = 0x00 = 0 (ASCII character code 0 decimal - null-terminator)


What is the ASCII code in binary and in decimal for a lowercase z?

Lowercase z is 122 decimal, 7a hex and 1111010 binary.

Related Questions

What does 1111 in Binary code mean?

1111 in binary is 15 in decimal.


How would you write the number two in binary code?

'2' Decimal code => '10' Binary code.


What is the ascii code in binary and decimal for a period?

In hexadecimal, that would be 0x2E, which is equivalent to 46 in decimal, which in binary is 101110.


What is binary code for 100111?

The binary code for the number 100111 is already in binary format. It represents the decimal number 39 when converted from binary to decimal. Each digit in this binary number corresponds to a power of 2, starting from the rightmost digit.


What is the binary code for the decimal number 67?

1000011


What is the binary code for 37?

Decimal 37 expressed in binary form is 100101 (or 00100101).


What is 97 in binary code?

You can easily convert decimal to binary in the scientific calculator - for example, the scientific calculator found in Windows. In this case, type the number in decimal, then click on "binary" to convert to binary.


How can you change the number 47 in Binary Code Decimal?

The number 47 in binary would be 101111


What is 27 in binary code?

(27)decimal = (1 1 0 1 1)binary


What is the ASC11 code in binary and in decimal for a lowercase z?

FEEW


What is the binary code for the decimal 42.2?

It is 101010.0011 0011 0011 ...


What is the binary code 10101010?

The binary code 10101010 represents the decimal number 170. In binary code, each digit is a power of 2, starting from the right with 2^0. Therefore, the binary digit 1 in the rightmost position represents 2^0, which is 1. Adding up the values of each digit in the binary code 10101010 gives 128 + 32 + 8 + 2 = 170 in decimal form.