本文介绍了将文本转换为UTF8的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

hii
请帮我
我需要用C#中的代码将文本转换为UTF8吗?

hii
plz can help me
i need code in c# to convert text to UTF8?

推荐答案


System.Text.Encoding utf_8 = System.Text.Encoding.UTF8;

string s = "unicode";

//string to utf
byte[] utf = System.Text.Encoding.UTF8.GetBytes(s);

//utf to string
string s2= System.Text.Encoding.UTF8.GetString(utf);





将来祝您好运.





Good luck in the future.



这篇关于将文本转换为UTF8的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-19 16:28