in reply to Re^2: Writing International Phonetic Alphabet symbols to Excel?
in thread Writing International Phonetic Alphabet symbols to Excel?
There might be better ways to fix this besides the following, but the following will work (at least, it did for me):
use Encode; # add this near the top, with the other "use" statements ... # write to spreadsheet, close excel $sheet -> write ( 0, 0, decode( 'utf8', $writestring )); # add the "de +code()" call
|
|---|