C # encoding Conversion UTF8 GB2312 GB2312 turn UTF8

Source: Internet
Author: User

Source: http://www.cnblogs.com/mahatmasmile/p/3467495.html
<summary>//GB2312 converted to UTF8///</summary>/<param name= "text" ></param&gt ; <returns></returns> public static string Gb2312_utf8 (string text) {//Declaration character Set System.Text.Encoding UTF8, gb2312; gb2312 gb2312 = System.Text.Encoding.GetEncoding ("gb2312"); UTF8 UTF8 = System.Text.Encoding.GetEncoding ("Utf-8"); Byte[] GB; GB = gb2312. GetBytes (text); GB = System.Text.Encoding.Convert (gb2312, UTF8, GB); Returns the converted character return UTF8. GetString (GB); }///<summary>//UTF8 Convert to GB2312///</summary>/<param name= "text" >< /param>//<returns></returns> public static string utf8_gb2312 (string text) { Declaration Character set System.Text.Encoding UTF8, gb2312; UTF8 uTf8 = System.Text.Encoding.GetEncoding ("Utf-8"); gb2312 gb2312 = System.Text.Encoding.GetEncoding ("gb2312"); Byte[] UTF; UTF = UTF8. GetBytes (text); UTF = System.Text.Encoding.Convert (UTF8, gb2312, UTF); Returns the converted character return gb2312. GetString (UTF); }

C # encoding Conversion UTF8 GB2312 GB2312 turn UTF8

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.