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

本文关键字:是什么 编码 字符串 | 更新日期: 2023-09-27 18:08:22

如何检测这个字符串的编码:

    "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()