gb2312编码 一个汉字对应2个字节 "中国人"
utf-8编码 一个汉字对应3个字节 "中国人"
编码 | C#中的表示形式 | 结果 |
gb2312 | System.Web.HttpUtility.UrlEncode("中国人",System.Text.Encoding.GetEncoding("gb2312")) | %d6%d0%b9%fa%c8%cb |
utf-8 | System.Web.HttpUtility.UrlEncode("中国人",System.Text.Encoding.GetEncoding("utf-8")) | %e4%b8%ad%e5%9b%bd%e4%ba%ba |