简体   繁体   中英

Need method to convert Excel to Tab Delimited txt file in Unicode encoding

I have some excel files containing some French characters, for example "Jean-Léon Gérôme" when I convert the excel file to tab delimited txt file, the default encoding is ANSI and the French characters became Gibberish, so I need a method that can convert the excel file to tab delimited file and at the same time in Unicode encoding.

(I know excel can directly export to Unicode text, but that is not what I need, I need the file in tab delimited txt and in Unicode encoding)

Please help. thanks a lot!

Simply saving an Excel file as "Unicode text" saved the file tab-delimited in UTF-16. Here is the result opened in Notepad++. Note that the encoding is "UCS-2 Little Endian" which is a subset of UTF-16. It only supports characters up to Unicode 65535 ( U+FFFF ), but that includes French characters so no worries:

在此处输入图片说明

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM