A letter or a number can't be represented by a bit! 1 bit is either 0 or 1. A byte is a sequence of 8 bits. In older programming languages, a character is represented by a byte that contains the ascii code for that character. In .NET however, characters are represented by their unicode value.... And a number like an int (Int32) is stored in memory in 4 bytes....