in reply to
Unicode Charset Problem
Perhaps your database loose the UTF8 flag for the string. Check that with
Devel::Peek
and update the string from the database with
$str = Encode::decode('utf8', $str );
or a similar function.
Boris
Comment on
Re: Unicode Charset Problem
Download
Code
Replies are listed 'Best First'.
Re^2: Unicode Charset Problem
by
zby
(Vicar)
on Mar 21, 2005 at 13:43 UTC
An example of the UTF8 flag in database action you can find in my
Beware of the UTF_8 flag
node.
[reply]
In Section
Seekers of Perl Wisdom