in reply to Handling variety of languages/Unicode characters with Spreadsheet::ParseExcel
When dealing with encodings, you have to control (and check) the whole path your data takes. Most likely, you are not passing the Unicode characters to your database, or your database does not understand the Unicode characters. When retrieving the data from the database, you might retrieve octets that are UTF-8 encoded strings, but you don't decode these octets into proper Unicode characters. Also, when debugging by printing your data to the screen, your terminal might be configured for a different encoding than UTF-8, or you might output your data in a different encoding than UTF-8.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Handling variety of languages/Unicode characters with Spreadsheet::ParseExcel
by richb (Scribe) on Apr 09, 2010 at 01:50 UTC | |
by Corion (Patriarch) on Apr 09, 2010 at 07:25 UTC | |
by richb (Scribe) on Apr 09, 2010 at 11:41 UTC |