This section provides a tutorial example on how to save Unicode text file with Excel using the 'Unicode Text (*.txt)' file type option.
In the next test, I want to try the save function with the "Unicode Text (*.txt)" option.
1. Run Excel and open hello.utf-8 correctly with the Unicode (UTF-8) encoding option selected.
2. Click the File > "Save As" menu. The "Save As" dialog box comes up.
3. Enter excel_utf-16.txt as the new file name and select the "Unicode Text (*.txt)" option
in the "Save as Type" field.
4. Click the Save button. A warning dialog box comes up:
5. The warning message says:
"excel_utf-16le.txt may contain features that are not compatible with Unicode Text.
Do you want to keep workbook in this format? To keep this format, which leaves out
any incompatible features, click Yes..."
6. Click Yes to ignore the warning. Excel saves the text to a new file named as: excel_utf-16.txt.
7. To see how my text is saved by Excel, I need to run my HEX dump program on excel_utf-16.txt:
Very nice. This is a perfect UTF-16 encoding file using the Little-Endian with BOM format.
Those leading 2 bytes represent the BOM flag, which is not part of the text.
Conclusion - The "Unicode Text (*.txt)" encoding option of Excel matches the "Little-Endian with BOM" format of
Unicode UTF-16 encoding.