Asp.net Encoding Problem

I have a file in notepad that saves an Ansi ad with two URLs:

http://www.odinklik.ru/site .aspx? site = korney_ chukovsky

http://www.odinklik.ru/site.aspx?site=korney_chukovsky

As you can see from the pasta, one of them looks "strange." It changes to: "http://www.odinklik.ru/site%E2%80%8B.aspx?%E2%80%8Bsite=korney_%E2%80%8Bchukovsky"

When I copy it in the browser. What's going on here?

+3
source share
1 answer

The E2 code 80 8B is the UTF-8 code for the Zero Width Space character, but it is not the character that exists in the ANSI character set.

- , , ANSI .

+12

All Articles