Home > @taiyuuki/utils > math_to_hex
math_to_hex() function
该函数将数字转换为包含大写字母且最小长度为 2 个字符的十六进制字符串。
Signature:
typescript
declare function math_to_hex(n: number): string;
declare function math_to_hex(n: number): string;
Parameters
Parameter | Type | Description |
---|---|---|
n | number | 参数“n”是一个将被转换为十六进制字符串的数字。 |
Returns:
string
该函数返回一个包含大写字母且最小长度为 2 个字符的十六进制字符串。