将字符串替换为unicode字符

时间:2016-05-01 23:19:56

标签: javascript unicode

我有一个类似blah blah ::e||1f1e6-1f1ea:: blah blah的字符串,我想将其转换为blah blah blah blah

可以写成\u{1f1e6}\u{1f1ea}

我使用了下面的代码,但它转换为\u{1f1e6}\u{1f1ea}此字符串,而不是符号。

str.replace(/\:\:e\|\|(.*?)\:\:/g, function(x) { return x.replace(/-/g, '\}\\u\{'); }).replace(/\:\:e\|\|(.*?)\:\:/g, "\\u\{$1\}" );

1 个答案:

答案 0 :(得分:4)

1f1e61f1ea是该字符的十六进制Unicode代码点。您可以使用String.fromCodePoint,但是您需要使用PolyFill for IE:

text.replace(/::e\|\|([a-f0-9\-]+)::/g, function(match, text) {
    var code_points = text.split('-').map(function(n) {
        return parseInt(n, 16);
    });

    return String.fromCodePoint.apply(undefined, code_points);
});