Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

3
  • Isn't Unicode supported in URLs? I'm deciding whether or not to make use of this. Commented May 7, 2018 at 23:36
  • 1
    @Dogweather: I do most of my work on back-end stuff. So my answer is that no, URLs don't use Unicode at all. HTTP uses bytes. Just bytes. Make them whatever you want. Don't assume they are Unicode although they probably are. Also domains. Those can't use anything except 7-bit ASCII. There's a compression format for Unicode domains where they start with "xn--" Look up Punycode. Commented May 8, 2018 at 16:30
  • 1
    @Dogweather: What web browsers and HTML require are different from what goes out on the network. There you have percent encodings and such-like. And I'm not sure what the rules are on Unicode in URL links, if the browser percent encodes them or puts it on the wire in UTF-8. Commented May 8, 2018 at 16:33