如果我可以使用浏览器 JavaScript 控制台或通过书签小程序搜索特定字符的 Unicode 转义序列,那就太好了。有什么方法可以轻松做到这一点吗?
答案1
这是一个可以从控制台运行或保存为书签的函数,用于生成 Unicode 查找表:
function Unicode()
{
var i = 0, unicode = {}, zero_padding = "0000", max = 9999;
//Loop through code points
while (i < max) {
//Convert decimal to hex value, find the character, then pad zeroes to the codepoint
unicode[String.fromCharCode(parseInt(i, 16))] = ("u" + zero_padding + i).substr(-4);
i = i + 1;
}
//Replace this function with the resulting lookup table
Unicode = unicode;
}
//Usage
Unicode();
Unicode["%"];