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.
The binary values is 10110101.
To convert from binary to octal, bitwise AND the binary value with 0x8 (00000111 in binary) and push the value onto a stack. Right-shift (>>) the binary value by 3 bits and repeat until the binary value is zero. Pop the stack to build the left-to-right digits of the octal value. Using 10110100 as an example: 10110100 & 00000111 = 00000100 10110100 >> 3 = 00010110 00010110 & 00000111 = 00000110 00010110 >> 3 = 00000010 00000010 & 00000111 = 00000010 00000010 >> 3 = 00000000 Popping the values in order reveals 00000010, 00000110 and 00000100 (decimal 2, 6 and 4 respectively). Thus 10110100 binary is 0264 octal.
7710 = 10011012
27 = 11011
The first value in binary is 1
The binary value for K is 1001011.
The binary number equivalent of 133 is 10000101. (which for clarity can be grouped, e.g. 1000 0101). A binary number uses exponents of 2 rather than 10, and the first eight digits represent 128, 64, 32, 16, 8, 4, 2, and 1 10000101 = 128 +0+0+0+0+4+0+1 = 133
10000011 is 131 in binary.
109 in binary is 1101101.
100111101 is 317 in binary.
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.
Decimal 181 in binary is 10110101
43869 converted to binary notation is 1010101101011101
The binary values is 10110101.
Binary(101) = Decimal(5).
Binary 100 is 4 in decimal.