in reply to Re^4: CGI.pm encoding - wrong encoding for ě
in thread CGI.pm encoding - wrong encoding for ě

You will need to learn what encoding is written to the database, and what encoding is returned from the database. Then you will need to Encode::decode from that encoding.

You will need to repeat that process for all points in your code where you retrieve data from outside of the Perl interpreter, or where you hand off data to the outside of the Perl interpreter.

  • Comment on Re^5: CGI.pm encoding - wrong encoding for ě