用Text模式接收中文短信,AT+CMGF=1
+CMTI: "ME",52
AT+CMGR=52
+CMGR: "REC UNREAD","+8613861512345",,"23/07/27,14:22:08+32"
6D4B8BD577ED4FE100310032003300340035
OK
接收到的一串Unicode字符串,怎么翻译成中文,
6D4B8BD577ED4FE100310032003300340035
百度上搜了一堆Unicode转中文的在线工具,用不了
需要再每个Unicode之前加\u,才能使用\u6D4B\u8BD5\u77ED\u4FE1\u0031\u0032\u0033\u0034\u0035
翻译出来 “测试短信12345”
用C#写了一个测试代码,就可以直接翻译出来了
namespace ConsoleApp5
{
internal class Program
{
static void Main(string[] args)
{
string strInput = "6D4B8BD577ED4FE100310032003300340035";
string strResult = "";
int Length = strInput.Length;
byte[] cBuff = new byte[Length / 2];
for (int i = 0, j = 0; i < Length; i += 2, j++)
{
cBuff[j] = Convert.ToByte(strInput.Substring(i, 2), 16);
}
// 解码成汉字
strResult = Encoding.GetEncoding("UnicodeFFFE").GetString(cBuff);
Console.WriteLine(strResult);
Console.Read();
}
}
}