gpt4 book ai didi

javascript - 将百分比符号转换为 u+hex (javascript)

转载 作者:行者123 更新时间:2023-12-03 05:09:05 26 4
gpt4 key购买 nike

我需要将带有百分比符号的解码字符串替换为 U+hex。

字符串:

"text=%F0%9F%98%8A&id=60&tags=";

我需要什么:

根据 http://unicode.org/emoji/charts/full-emoji-list.html%F0%9F%98%8A 更改为 'U+1F60A'1F60A(全局)。 .

最佳答案

对于1f60a:

var c = decodeURIComponent("%F0%9F%98%8A").codePointAt(0).toString(16);

请注意,\u1f60a 在 JS 中不起作用(尽管它可以作为 HTML 实体),您需要 2 个代码点; c.charCodeAt(0).toString(16) & c.charCodeAt(1).toString(16)

关于javascript - 将百分比符号转换为 u+hex (javascript),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41899133/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com