00110101
00110101 is an eight-bit binary numeral. In decimal it equals 53, and in hexadecimal it is 0x35. As an eight-bit unsigned value it remains 53; in eight-bit signed two's complement interpretation the value is also 53 because the most significant bit is 0. The pattern is a common example used to illustrate how bits correspond to numbers and characters in computing.
In ASCII, the binary pattern 00110101 represents the character '5'. Therefore, when a byte is decoded as
In binary-coded decimal (BCD), 00110101 can be read as two separate digits: the high nibble 0011 encodes
In practical use, 00110101 may appear as a byte within data streams, files, or network packets. It
See also: ASCII, binary numeral system, hexadecimal, BCD, two's complement.