URI 中的路径可以包含 unicode 吗?
有效的 URL 是否可以包含非转义的 Unicode 字符?
Is it possible for a valid URL to contain non-escaped Unicode characters?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有效的 URL 是否可以包含非转义的 Unicode 字符?
Is it possible for a valid URL to contain non-escaped Unicode characters?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
是的,URI 中允许未转义的 ASCII(以及 Unicode)子集,例如字母和数字。但大多数 Unicode 字符集都必须进行百分比编码。
Yes, the subset of ASCII (and therefore Unicode) that is allowed unescaped in URIs, such as letters and numbers. But the majority of the Unicode character set has to be percent-encoded.
URI
和URL
本身并不支持未转义的非 ASCII Unicode 字符,但是许多服务器确实允许使用百分比编码的 UTF-8 或本地化的 Ansi 八位字节(但不可能指定实际使用的)。对于标准化的本机 Unicode 处理,请使用IRI
代替,即取代URI
/URL
的新协议。它要求所有内容都采用 UTF-8 编码,并提供如何在IRI
和URI
之间转换的规则。URI
andURL
do not natively support unescaped non-ASCII Unicode characters, however many servers do allow percent-encoded UTF-8 or localized Ansi octets to be used (but no way of specifying which is actually used). For standardized native Unicode handling, useIRI
instead, which is the new protocol that replacesURI
/URL
. It requires UTF-8 encoding for everything, and provides rules for how to convert betweenIRI
andURI
.