Convert the following string into a series of 7bit ASCII cod
Convert the following string into a series of 7-bit ASCII codes: “A Hard Day’s Night!”
Solution
So, overall result will be:
1000001010000010010001100001111001011001000100000100010011000011111001010110011100110100000100111011010011100111110100011101000100001
| Character | Decimal Equivalent | Hexadecimal Equivalent | 7-bit binary equivalent | 
| A | 65 | 41 | 1000001 | 
| space | 32 | 20 | 0100000 | 
| H | 72 | 48 | 1001000 | 
| a | 97 | 61 | 1100001 | 
| r | 114 | 72 | 1110010 | 
| d | 100 | 64 | 1100100 | 
| space | 32 | 20 | 0100000 | 
| D | 68 | 44 | 1000100 | 
| a | 97 | 61 | 1100001 | 
| y | 121 | 79 | 1111001 | 
| \' | 44 | 2C | 0101100 | 
| s | 115 | 73 | 1110011 | 
| space | 32 | 20 | 0100000 | 
| N | 78 | 4E | 1001110 | 
| i | 105 | 69 | 1101001 | 
| g | 103 | 67 | 1100111 | 
| h | 104 | 68 | 1101000 | 
| t | 116 | 74 | 1110100 | 
| ! | 33 | 21 | 0100001 | 

