URI 中的路径可以包含 unicode 吗?

发布于 2024-11-27 10:33:23 字数 37 浏览 1 评论 0原文

有效的 URL 是否可以包含非转义的 Unicode 字符?

Is it possible for a valid URL to contain non-escaped Unicode characters?

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

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

发布评论

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

评论(2

苦行僧 2024-12-04 10:33:23

是的,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.

帅气称霸 2024-12-04 10:33:23

URIURL 本身并不支持未转义的非 ASCII Unicode 字符,但是许多服务器确实允许使用百分比编码的 UTF-8 或本地化的 Ansi 八位字节(但不可能指定实际使用的)。对于标准化的本机 Unicode 处理,请使用 IRI 代替,即取代 URI/URL 的新协议。它要求所有内容都采用 UTF-8 编码,并提供如何在 IRIURI 之间转换的规则。

URI and URL 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, use IRI instead, which is the new protocol that replaces URI/URL. It requires UTF-8 encoding for everything, and provides rules for how to convert between IRI and URI.

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