js String charCodeAt All In One
js String charCodeAt All In One
The charCodeAt()
method returns an integer between 0 and 65535 representing the UTF-16 code unit at the given index.
charCodeAt() 方法返回一个介于 0 和 65535 之间的整数,表示给定索引处的 UTF-16 代码单元。
单个字符,默认索引是 0;
如果索引超出范围, 返回值 NaN
;
// 默认 index 是 0 ✅
`a`.charCodeAt()
// 97
`a`.charCodeAt(0)
// 97
// 索引超出范围, 返回值 NaN; ❌
`a`.charCodeAt(1)
// NaN
多个字符,按照指定的索引
返回
const str = `abc`
// 'abc'
str.charCodeAt()
// 97
str.charCodeAt(0)
// 97
str.charCodeAt(1)
// 98
str.charCodeAt(2)
// 99
Unicode & ASCII
Unicode
code points range from 0 to 1114111 (0x10FFFF).
The first 128 Unicode code points are a direct match of the ASCII
character encoding.
charAt
The String object's charAt()
method returns a new string consisting of the single UTF-16 code unit located at the specified offset into the string.
String 对象的 charAt() 方法返回一个新字符串,该字符串由位于字符串中指定偏移量的单个 UTF-16 代码单元组成。
const str = 'abc';
console.log(str.charAt());
console.log(str.charAt(0));
console.log(str.charAt(1));
console.log(str.charAt(2));
console.log(str.charAt(3));
// "a"
// "a"
// "b"
// "c"
// ""
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/charAt
refs
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/charCodeAt
©xgqfrms 2012-2020
www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问!
原创文章,版权所有©️xgqfrms, 禁止转载 🈲️,侵权必究⚠️!
本文首发于博客园,作者:xgqfrms,原文链接:https://www.cnblogs.com/xgqfrms/p/16559141.html
未经授权禁止转载,违者必究!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· Manus的开源复刻OpenManus初探
· AI 智能体引爆开源社区「GitHub 热点速览」
· C#/.NET/.NET Core技术前沿周刊 | 第 29 期(2025年3.1-3.9)
· 从HTTP原因短语缺失研究HTTP/2和HTTP/3的设计差异
2021-08-07 国内注册的域名突然无法访问 All In One
2020-08-07 我自成佛自度我,佛度凡尘我度佛 All In One
2020-08-07 You Don't Know Chrome Features
2019-08-07 flutter & startup lock & bug
2019-08-07 flutter & chat app & github
2018-08-07 Linux & bash & shell & PID & PPID
2016-08-07 如何在 Python 中使用 UTF-8 编码 All In One