I recommend that you don't try to use any Unicode encoding with PHP - it does not support them properly, all the strlen() etc functions will return the wrong answer and many libraries do not take into account encodings.
Better to use an 8-bit encoding which supports your language, for French, ISO-8859-1 should do. This is usually the default.
Mark