I'm using this spreadsheet gem to export excel files.
The Chinese word 进 can cause Format Error. I tested on some other Chinese words and there is no problem.
require "spreadsheet"
Spreadsheet.client_encoding = 'UTF-8'
doc = Spreadsheet::Workbook.new
sheet = doc.create_worksheet
row = sheet.row(0)
row.push "进"
doc.write "test.xls"
Please help to check.
#encoding:utf-8at the head of file – goofansu Jan 16 at 7:20ruby 1.9.3p286 (2012-10-12) [i386-mingw32]and Excel 2003 – Yevgeniy Anfilofyev Jan 16 at 8:26