将 css unicode 转换为 js

convert css unicode to js

我有几个表情符号 unicode 在 css 中运行良好:

    content: "\f410"
    content: "\f2d1"

我尝试 output it with javascript,但我失败了,如果您能提供任何建议,我将不胜感激。

console.log('\f410');
console.log('\Uf410');

应该是console.log('\uf410');,小写u

ps:也许你也喜欢这样的东西:console.log(String.fromCharCode(parseInt('f410',16))).