Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Who redirects Umlaut domain names in browser to transliterated domain name?

Tags:

I have a domain that contains an Umlaut like that:

https://spaß.de

"ß" may be transliterated to "ss".

Now when I copy and paste this text into Chrome or any other browser, I'm taken to

https://spass.de

However, the 2 domains have different owners, and the owner of "https://spaß.de" will never get any traffic to his site.

Is there any authority that redirects Umlaut domains to transliterated domains, or is the browser responsible for this? I have tried all kinds of browsers, they all show the same behaviour.

Thank you for any insights.

like image 864
tmighty Avatar asked Aug 27 '18 20:08

tmighty


1 Answers

In your case it's the browser. Browsers consider ß ss Ss sS and SS to all have the same semantic meaning when processing web addresses. You can't reliably distinguish between them in a domain name for a web site. If you want to know the details, this process is called Nameprep.

https://en.wikipedia.org/wiki/Nameprep

On the other hand, u and ü are considered to not have the same semantic meaning. A domain name should not have an actual ü in it, but browsers can display, as an example, xn--bcher-kva as bücher. The encoding scheme is called Punycode.

https://en.wikipedia.org/wiki/Punycode

like image 164
Robyn Avatar answered Sep 20 '22 13:09

Robyn