首页 > 代码库 > C#控制台基础 字符串转换为UTF-8格式的字节数组

C#控制台基础 字符串转换为UTF-8格式的字节数组

1、代码

 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6  7 namespace ConsoleApplication3 8 { 9     class Program10     {11         static void Main(string[] args)12         {13             string str = "知耻近乎勇";14             byte[] buffer = System.Text.Encoding.UTF8.GetBytes(str);15 16             Console.WriteLine("OK");17             Console.ReadKey();18         }19     }20 }

 

 

2、效果

技术分享

 

C#控制台基础 字符串转换为UTF-8格式的字节数组