Octal 转 Hex
把 Octal 值转成 Hex,做 register dump、位掩码、抓包分析、协议调试都用得上,全程在浏览器里完成。
Octal digits 0–7.
Hexadecimal value, uppercase.
Convert octal values into hexadecimal. Useful when migrating older scripts and configuration files that used octal into modern code that prefers hex.
Is the conversion lossless?
Yes. Both formats represent the same integer; only the textual representation differs.