这个字符串的编码是什么?

What is the encoding of this string?

如何检测此字符串的编码:

    "http://sinapress.ir/resize/directory/مجامع علمی/1439280705853632083.jpg/263/171"

原字符串为:

    "http://sinapress.ir/resize/directory/مجامع علمی/1439280705853632083.jpg/263/171"

如何在 C# 中将第一个字符串转换为第二个字符串?

您可以使用HttpUtility.HtmlDecode

var urlToDecode = "http://sinapress.ir/resize/directory/مجامع علمی/1439280705853632083.jpg/263/171";
Console.WriteLine(HttpUtility.HtmlDecode(urlToDecode));

它的正常 html 编码。只需使用 HttpUtility.HtmlDecode()