✔ 最佳答案
Good that you ask this question. The simplest answer is that for plain text (ascii) each character is 8 bits (1 byte). If your text file contains A and nothing else, the file size is 1 byte.
For unicode, each character is 16 bits or 2 bytes (this is not exactly true, but take it for now). A file containing ABCDE has a size of 12 bytes (the other 2 bytes are the overhead).
Ascii text is represented by number 0-255, 65 is A, etc. If you have foreign language or signs not represented by these numbers, ascii cannot display them and that is when we need Unicode.
2007-09-30 12:26:54 補充:
樓上:: 悲情苦瓜::Txt File 怎能看中文?