PowerShell 转码函数 Default->UTF8

 1 $chs='你好'
 2 
 3 function converToUft8($str){
 4 
 5 $bs=[System.Text.Encoding]::Default.GetBytes($str);
 6 
 7 $u8Char=[System.Text.UTF8Encoding]::UTF8.GetString($bs);
 8 return $u8Char;
 9 
10 }
11 
12 $enCode= converToUft8($chs)
13 echo $enCode

 

posted @ 2016-09-23 09:27  特洛伊-Micro  阅读(989)  评论(0编辑  收藏  举报