Searched refs:utftext (Results 1 – 1 of 1) sorted by relevance
96 var utftext = "";103 utftext += String.fromCharCode(c);106 utftext += String.fromCharCode((c >> 6) | 192);107 utftext += String.fromCharCode((c & 63) | 128);110 utftext += String.fromCharCode((c >> 12) | 224);111 utftext += String.fromCharCode(((c >> 6) & 63) | 128);112 utftext += String.fromCharCode((c & 63) | 128);117 return utftext;121 _utf8_decode : function (utftext) { argument126 while ( i < utftext.length ) {[all …]