Ascii 1
Ascii 1
Why do you think when you save password as PAL2013 and you type
pal2013 you get an error?
Each character is represented by 8 bits.
Steps
2. Insert the binary value that you were given in the table (see slide 6)
128 64 32 16 8 4 2 1
27 26 25 24 23 22 21 20
0 1 0 0 0 0 1 0
Steps
3. Add all the values in the top row that has a one (1) under it
128 64 32 16 8 4 2 1
27 26 25 24 23 22 21 20
0 1 0 0 0 0 1 0
64 + 2 = 66
Steps
4. Check the ASCII table for the letter with the decimal value.
All Caps A B C D E F G H I J K L M
Decimal 65 66 67 68 69 70 71 72 73 74 75 76 77
Rep
Its a B
Please find the letters for the following values:
1) 01101010
2) 01010111
Finding a word when given the ASCII
For example you were given 010101000100100001000101 to
convert.
Steps
1. First separate the binary value into groups of 8 starting from the
right.
010101000100100001000101
Steps