如何使用JavaScript将字符转换为ASCII码?

例如:

从“\n”中得到10。


当前回答

将字符串转换为累积数:

const stringToSum = str => [...str||”A“].reduce((a, x) => and += x.codePointAt(0), 0); console.log(stringToSum(“A”)); 65 console.log(stringToSum(“Roko”)); 411 console.log(stringToSum(“Stack Overflow”));1386

用例:

假设你想根据用户名生成不同的背景颜色:

const stringToSum = str => [...str||"A"].reduce((a, x) => a += x.codePointAt(0), 0); const UI_userIcon = user => { const hue = (stringToSum(user.name) - 65) % 360; // "A" = hue: 0 console.log(`Hue: ${hue}`); return `<div class="UserIcon" style="background:hsl(${hue}, 80%, 60%)" title="${user.name}"> <span class="UserIcon-letter">${user.name[0].toUpperCase()}</span> </div>`; }; [ {name:"A"}, {name:"Amanda"}, {name:"amanda"}, {name:"Anna"}, ].forEach(user => { document.body.insertAdjacentHTML("beforeend", UI_userIcon(user)); }); .UserIcon { width: 4em; height: 4em; border-radius: 4em; display: inline-flex; justify-content: center; align-items: center; } .UserIcon-letter { font: 700 2em/0 sans-serif; color: #fff; }

其他回答

JavaScript将字符串存储为UTF-16(双字节),所以如果你想忽略第二个字节,只需在0000000011111111(即255)上按位&操作符将其剥离:

'a'.charCodeAt(0) & 255 === 97; // because 'a' = 97 0 
'b'.charCodeAt(0) & 255 === 98; // because 'b' = 98 0 
'✓'.charCodeAt(0) & 255 === 19; // because '✓' = 19 39

对于那些想要获取字符串中所有ASCII码的平均值的人:

const ASCIIAverage = (str) =>Math.floor(str.split("))。map(item => item. charcodeat (0)).reduce((prev,next) => prev+next)/str.length) console.log (ASCIIAverage(“Hello World !”)

如果您只使用128个原始ASCII字符(代码0到127),那么扩展Álvaro González和其他注释,charCodeAt或codePointAt非常好。在此范围之外,代码依赖于字符集,如果希望结果有意义,则需要在计算之前进行字符集转换。

让我们以欧元符号为例:'€'. codepointat(0)返回8364,这远远超出了0-127的范围,并且相对于UTF-16(或UTF-8)字符集。

我移植了一个Visual Basic程序,并注意到它使用Asc函数来获取字符代码。显然,从它的角度来看,它将返回Windows-1252字符集中的字符代码。为了确保获得相同的数字,我需要转换字符串字符集,然后计算代码。

非常简单,例如在Python中:ord('€'.encode('Windows-1252'))。 然而,为了在Javascript中实现同样的效果,我不得不求助于缓冲区和转换库:

iconv = require('iconv-lite');
buf = iconv.encode("€", 'win1252');
buf.forEach(console.log);
str.charCodeAt(index)

使用charCodeAt () 下面的示例返回A的Unicode值65。

'ABC'.charCodeAt(0) //返回65

将字符串转换为UTF-8的数组(流):

const str_to_arr_of_UTF8 = new TextEncoder().encode("Adfgdfs");
// [65, 100, 102, 103, 100, 102, 115]

注意:ASCII是UTF-8的一个子集,所以这是一个通用的解决方案