Here' simple way to read binary. First take a look at an ASCII table. ASCII stands for American Standard Code for Information Interchange. Here’s a table right here. You will see a few things; Dec, Hx, OCT, char, and HTML. All you need to worry about it char and dec. What dec is, is the decimal value for that character/char. In binary the value added up to a number will be the value of that character.
Now to read binary.
first start from right to left. 0 means false and 1 means true. Or look at it as in 0 means off and 1 is on. This is base 2 btw. Like a light bulb kind of. So if it’s a zero it’s not true and should not be used and kind of just a place holder.
00000000 = 0 bits
simply take each of the ones that have a 1 there and put 2 to the power of its position. But remember with computer you start with 0 instead of 1. So to count to seven you’d do 0123456…
For example:
00000001
the first position has a 1
now take 20 which equals 1 in a decimal value.
let’s work with
00010101
read from the right. We have 20, 22, 24 which equals 1, 4, 16. Now 1+4+16 = a decimal value of 21
Then look for that value on an ASCII table. This is kind of a dumbed down expression so if you have any further question feel free to ask