进制与ASCII码之间的转换


进制与ASCII码之间的转换

文章插图
如下所示:
var hex="0x29";//十六进制var charValue = https://www.dangaocn.com/q/hrsd/String.fromCharCode(hex);//生成Unicode字符var charCode = charValue.charCodeAt(0);//获取指定字符的十进制表示.var hexOri="0x"+charCode.toString(16);;//将int值转换为十六进制alert("hex:"+hex+"charValue:"+charValue+"charCode:"+charCode+"hexOri:"+hexOri);
【进制与ASCII码之间的转换】