Décodage des caractères accentués majuscule
Qui peut me dire pourquoi sous IE la fonction utf8_decode (récuperée sur http://www.webtoolkit.info/javascript-utf8.html et à voir ci dessous) ne me décode pas les caractères accentués majuscules, seulement en minuscule. En entrée j'ai un flux UTF-8. Comme exemple:
Bêches -> Bêches
NÉCESSITÉS - > NðCESSITðS
function utf8_decode(utftext) {
var string = "";
var i = 0;
var c = c1 = c2 = 0;
while ( i < utftext.length ) {
c = utftext.charCodeAt(i);
if (c < 128) {
string += String.fromCharCode(c);
i++;
}
else if((c > 191) && (c < 224)) {
c2 = utftext.charCodeAt(i+1);
string += String.fromCharCode(((c & 31) << 6) | (c2 & 63));
i += 2;
}
else {
c2 = utftext.charCodeAt(i+1);
c3 = utftext.charCodeAt(i+2);
string += String.fromCharCode(((c & 15) << 12) | ((c2 & 63) << 6) | (c3 & 63));
i += 3;
}
}
return string;
}
any help ?