浏览器地址栏中的 url 编码

发布于 2024-11-18 10:10:18 字数 431 浏览 4 评论 0原文

当我在浏览器地址栏中放置一些非字母数字符号时,它们会被进行 url 编码。例如,https://www.php.net/manual-lookup.php?pattern=привет 变成 https://www.php.net /manual-lookup.php?pattern=%EF%F0%E8%E2%E5%F2

问题是:这两个百分号前缀的十六进制数字是什么意思?

When I put some non-alpha-numeric symbols in browser address bar, they got url-encoded. For example, https://www.php.net/manual-lookup.php?pattern=привет turns into https://www.php.net/manual-lookup.php?pattern=%EF%F0%E8%E2%E5%F2.

The question is: what do those two percent-prefixed hex digits mean?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

往事随风而去 2024-11-25 10:10:18

它们是字节
Windows 1251 西里尔字母编码。由于只有 6 个字符,因此它们不能是 UTF-8,因为 6 个西里尔字符需要 12 个字节的 UTF-8。

CP1251 的代码表可在此处找到:http://en.wikipedia.org/wiki/Windows -1251

就像 20 是空格的十六进制一样,每个西里尔字符都有其数值,可表示为两个十六进制数字。

they are bytes of the
Windows 1251 encoding of Cyrillic. Since there are only six of them, they can't be UTF-8, since it takes 12 bytes of UTF-8 for 6 chars of Cyrillic.

The code chart for CP1251 can be found here: http://en.wikipedia.org/wiki/Windows-1251.

Just like 20 is hex for a space, each of the Cyrillic characters has its numeric value, expressible as two hex digits.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文