开发者

How to convert string from encoding codes to charactes?

I have a text of strings that looks like:

%D0%A1%D1%82%D1%80%D0%BE%D0%BA%D0%B0

How can I convert it to actual characters? If I'm unders开发者_运维知识库tand it right it's UTF char codes.


It is URL-encoded:

var s = System.Web.HttpUtility.UrlDecode("%D0%A1%D1%82%D1%80%D0%BE%D0%BA%D0%B0");

Produces:

"Строка"

Which is Russian for "row" or "string", I think.


See the accepted answer in this post, you just need to change their "-" to your "%"

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜