Heya,
* Brion Vibber brion@pobox.com [20040810 21:13]:
But I want to use Unicode ..
You'll want to convert your data from latin-1 to UTF-8, then. Dump, run it through iconv, and restore.
iconv didn't help (mixed UTF-8 and ISO-8859-1 in the database),
while (<>) { s/\344/\303\244/g; s/\366/\303\266/g; s/\374/\303\274/g; s/\304/\303\204/g; s/\326/\303\226/g; s/\334/\303\234/g; s/\337/\303\237/g; print $_; }
did.
so long,
Count