gpt4 book ai didi

javascript - javascript中的int到十六进制字符串

转载 作者:行者123 更新时间:2023-12-03 16:45:58 26 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





How to convert decimal to hexadecimal in JavaScript

(30 个回答)


8年前关闭。




我想将数字(整数)转换为十六进制字符串

2 (0x02) to "\x02"

或者
62 (0x0062) to "\x62"

我怎样才能正确地做到这一点?

最佳答案

您可以使用 to 字符串方法:

a = 64;
a.toString(16); // prints "40" which is the hex value
a.toString(8); // prints "100" which is the octal value
a.toString(2); // prints "1000000" which is the binary value

关于javascript - javascript中的int到十六进制字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23122373/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com