浏览器地址栏中的 url 编码
当我在浏览器地址栏中放置一些非字母数字符号时,它们会被进行 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它们是字节
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.