char * s = "1\xee;2";
//response = string2hex(std::string("1\x000aa2", 3)) + "";
response = string2hex(std::string("1\x0000a""2", 3)) + "";//注意转义符号 \xhh 和 \xhhhh 的说法至少在 vs2008 中是错误的,它会一直算,直到碰到别的符号
甚至有网友说转义失败的情况,想起我在 java 中直接在字符串中利用 \u 用转义字符表示二进制的 dns 请求,汗颜哪.