in reply to How to handle encodings?

Another important issue when working with different character sets is to avoid double encoding, i.e. encoding a string to UTF-8 which already is UTF-8 encoded, and to avoid mixed encoding within the same string or document, in which case there will be bad characters dsiplayed and guessing the right encoding will then be impossible.

Replies are listed 'Best First'.
Re^2: How to handle encodings?
by DreamT (Pilgrim) on Mar 17, 2009 at 16:08 UTC
    Ok, thank you for all your answers! I will look into using utf-8 as much as possible.