js怎么随机生成汉字呢?
如下这种生成随机汉字的方式打印不出汉字。有没有其它办法?
let word = '\\u' +(Math.round(Math.random() * 20901) + 19968).toString(16);
console.log(word);
//打印
\u64d3
如下这种生成随机汉字的方式打印不出汉字。有没有其它办法?
let word = '\\u' +(Math.round(Math.random() * 20901) + 19968).toString(16);
console.log(word);
//打印
\u64d3