How To Convert To 8 Bit Binary?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
To convert to 8-bit binary, you will need to represent the number in base 2. You can do this by dividing the number by two and recording the remainder for each step of the division. Begin the division with the number in question and continue until you reach zero. The remainder of each step will be a “1” or “0” in the binary representation. For example, if you wanted to convert the number 105 to 8-bit binary, it would look like this:
105/2 = 52 remainder 1
52/2 = 26 remainder 0
26/2 = 13 remainder 0
13/2 = 6 remainder 1
6/2 = 3 remainder 0
3/2 = 1 remainder 1
1/2 = 0 remainder 1
So, the 8-bit binary representation of 105 would be 01101001.