js把unicode字串轉 字串/unicode字碼字串轉字串

 unicode字碼 解碼 成 可閱讀文字



function unicodeToChar(text) {

   return text.replace(/\\u[\dA-F]{4}/gi, 

          function (match) {

               return String.fromCharCode(parseInt(match.replace(/\\u/g, ''), 16));

          });

}

留言

此網誌的熱門文章