Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
0x34363932353433373538323038353135353439
从 Unix/cygwin 命令行,您可以使用 bc。
$ bc ibase=16 34363932353433373538323038353135353439 1164362276596472215941024063897591129839055929
还有一个在线版本。如果您想在代码中执行此操作,您应该使用任意精度库工具,例如 Java 的 BigInteger、Perl 的 Math::BigInt、Tcl 的 math::bignum,或者可用于 C 的许多多精度算术库,例如GNU GMP,或MPI。
对我来说看起来像 ASCII!在大端系统上,您会得到字符串“4692543758208515549”。:-)
无论如何,要真正回答您的问题,Ruby 对此很有用:
ruby -e 'p 0x34363932353433373538323038353135353439'