Yes, you can browse IDN domains in Android's browser, but the domain name will be simply converted to the Punycode notation, so you will see www.xn--br-via.com instead of www.bär.com in the adress bar.
If you want to access such domains, you have to convert the domain to Punycode.
You can do this programmatically with java.net.IDN, or you could use an online converter and work with the Punycode notation.
Yes, you can browse IDN domains in Android's browser, but the domain name will be simply converted to the Punycode notation, so you will see
www.xn--br-via.com
instead ofwww.bär.com
in the adress bar.If you want to access such domains, you have to convert the domain to Punycode.
You can do this programmatically with java.net.IDN, or you could use an online converter and work with the Punycode notation.