As ASCII character code uses seven bit to encode 128 characters and most computers manipulate an eighth-bit quantity as one byte and ASCII characters are stored one per eight bit, and an additional bit(most significant bit) is taken zero for ASCII characters and other 128 bytes with most significant bit 1 are used for other types of characters e.g. italic etc.
But when even parity is created let's say for example for T
(ASCII 1010100
)
for error detection when transmitting it becomes T( even parity 11010100
) with 1 as most significant bit but this code is for another character (from those which have 1 as MSB).
Will it not be overwritten?
How this happens?
Or what I'm lacking in my concept?