@jdan.
codePointAtExample
v5
Fork
1
2
3
4
5
export
const
codePointAtExample
=
[
"H"
.
charCodeAt
(
0
)
,
"๐ถโ๐ซ๏ธ"
.
codePointAt
(
0
)
,
"๐ถโ๐ซ๏ธ"
.
codePointAt
(
0
)
.
toString
(
16
)
,
]
;
โฆ
0
0
0