Hướng dẫn hexdec php large numbers - hexdec php số lớn

(Php 4, Php 5, Php 7, Php 8)

hexdec - thập lục phân đến thập phânHexadecimal to decimal

Sự mô tả

hexdec (chuỗi $hex_string): int | float(string $hex_string): int|float

hexdec () sẽ bỏ qua bất kỳ ký tự không phải là bất kỳ nhân vật nào mà nó gặp phải. Kể từ Php 7.4.0 cung cấp bất kỳ ký tự không hợp lệ nào cũng không được chấp nhận. will ignore any non-hexadecimal characters it encounters. As of PHP 7.4.0 supplying any invalid characters is deprecated.

Thông số

hex_string

Chuỗi thập lục phân để chuyển đổi

Trả về giá trị

Đại diện thập phân của hex_string

Thay đổi

Phiên bảnSự mô tả
7.4.0 hexdec (chuỗi $hex_string): int | float

hexdec () sẽ bỏ qua bất kỳ ký tự không phải là bất kỳ nhân vật nào mà nó gặp phải. Kể từ Php 7.4.0 cung cấp bất kỳ ký tự không hợp lệ nào cũng không được chấp nhận.

Thông sốhexdec() example

var_dump(hexdec("See"));
var_dump(hexdec("ee"));
// both print "int(238)"var_dump(hexdec("that")); // print "int(10)"
var_dump(hexdec("a0")); // print "int(160)"
?>

hex_string

Chuỗi thập lục phân để chuyển đổi:

Trả về giá trịint type, larger values are returned as float in that case.

Đại diện thập phân của hex_string

  • Thay đổi
  • Phiên bản
  • Vượt qua các ký tự không hợp lệ bây giờ sẽ tạo ra một thông báo khấu hao. Kết quả vẫn sẽ được tính toán như thể các ký tự không hợp lệ không tồn tại.
  • Ví dụ

Ví dụ #1 hexdec () ví dụ

Ghi chú

Use this function to convert a hexa decimal color code to its RGB equivalent. Unlike many other functions provided here, it will work correctly with hex color short hand notation.

Also, if a proper hexa decimal color value is given (6 digits), it uses bit wise operations for faster results.

For eg: #FFF and #FFFFFF will produce the same result

/**
* Convert a hexa decimal color code to its RGB equivalent
*
* @param string $hexStr (hexadecimal color value)
* @param boolean $returnAsString (if set true, returns the value separated by the separator character. Otherwise returns associative array)
* @param string $seperator (to separate RGB values. Applicable only if second parameter is true.)
* @return array or string (depending on second parameter. Returns False if invalid hex color value)
*/                                                                                                
function hex2RGB($hexStr, $returnAsString = false, $seperator = ',') {
   
$hexStr = preg_replace("/[^0-9A-Fa-f]/", '', $hexStr); // Gets a proper hex string
   
$rgbArray = array();
    if (
strlen($hexStr) == 6) { //If a proper hex code, convert using bitwise operation. No overhead... faster
       
$colorVal = hexdec($hexStr);
       
$rgbArray['red'] = 0xFF & ($colorVal >> 0x10);
       
$rgbArray['green'] = 0xFF & ($colorVal >> 0x8);
       
$rgbArray['blue'] = 0xFF & $colorVal;
    } elseif (
strlen($hexStr) == 3) { //if shorthand notation, need some string manipulations
       
$rgbArray['red'] = hexdec(str_repeat(substr($hexStr, 0, 1), 2));
       
$rgbArray['green'] = hexdec(str_repeat(substr($hexStr, 1, 1), 2));
       
$rgbArray['blue'] = hexdec(str_repeat(substr($hexStr, 2, 1), 2));
    } else {
        return
false; //Invalid hex color code
   
}
    return
$returnAsString ? implode($seperator, $rgbArray) : $rgbArray; // returns the rgb string or the associative array
} ?>

OUTPUT:

hex2RGB("#FF0") -> array( red =>255, green => 255, blue => 0)
hex2RGB("#FFFF00) -> Same as above
hex2RGB("#FF0", true) -> 255,255,0
hex2RGB("#FF0", true, ":") -> 255:255:0

Ghi chú:

Hàm có thể chuyển đổi các số quá lớn để phù hợp với loại Nền tảng Int, các giá trị lớn hơn được trả về dưới dạng nổi trong trường hợp đó.

hex_string0

hex_string1

Xem thêm

Dechex () - thập phân đến thập lục phân

hex_string3

hex_string4

Bindec () - nhị phân đến thập phân

octdec () - bát phân đến thập phân

hex_string6

hex_string7

hex_string8

hex_string9

base_convert () - Chuyển đổi một số giữa các cơ sở tùy ý

Ghi chú

hex_string0

hex_string1

Ghi chú:

octdec () - bát phân đến thập phân

hex_string3

hex_string4

hex_string5

hex_string6

base_convert () - Chuyển đổi một số giữa các cơ sở tùy ý

Hafees at msn dot com ¶

hex_string7

hex_string8

hex_string9

var_dump(hexdec("See"));
var_dump(hexdec("ee"));
// both print "int(238)"var_dump(hexdec("that")); // print "int(10)"
var_dump(hexdec("a0")); // print "int(160)"
?>
0

var_dump(hexdec("See"));
var_dump(hexdec("ee"));
// both print "int(238)"var_dump(hexdec("that")); // print "int(10)"
var_dump(hexdec("a0")); // print "int(160)"
?>
1

var_dump(hexdec("See"));
var_dump(hexdec("ee"));
// both print "int(238)"var_dump(hexdec("that")); // print "int(10)"
var_dump(hexdec("a0")); // print "int(160)"
?>
2

12 năm trước

Hafees at msn dot com ¶

var_dump(hexdec("See"));
var_dump(hexdec("ee"));
// both print "int(238)"var_dump(hexdec("that")); // print "int(10)"
var_dump(hexdec("a0")); // print "int(160)"
?>
3

var_dump(hexdec("See"));
var_dump(hexdec("ee"));
// both print "int(238)"var_dump(hexdec("that")); // print "int(10)"
var_dump(hexdec("a0")); // print "int(160)"
?>
4

12 năm trước

chương trình tại Mundosica dot com ¶

var_dump(hexdec("See"));
var_dump(hexdec("ee"));
// both print "int(238)"var_dump(hexdec("that")); // print "int(10)"
var_dump(hexdec("a0")); // print "int(160)"
?>
6

var_dump(hexdec("See"));
var_dump(hexdec("ee"));
// both print "int(238)"var_dump(hexdec("that")); // print "int(10)"
var_dump(hexdec("a0")); // print "int(160)"
?>
7

var_dump(hexdec("See"));
var_dump(hexdec("ee"));
// both print "int(238)"var_dump(hexdec("that")); // print "int(10)"
var_dump(hexdec("a0")); // print "int(160)"
?>
8

var_dump(hexdec("See"));
var_dump(hexdec("ee"));
// both print "int(238)"var_dump(hexdec("that")); // print "int(10)"
var_dump(hexdec("a0")); // print "int(160)"
?>
9

Use this function to convert a hexa decimal color code to its RGB equivalent. Unlike many other functions provided here, it will work correctly with hex color short hand notation.0

Use this function to convert a hexa decimal color code to its RGB equivalent. Unlike many other functions provided here, it will work correctly with hex color short hand notation.1

Use this function to convert a hexa decimal color code to its RGB equivalent. Unlike many other functions provided here, it will work correctly with hex color short hand notation.2

10 năm trước

Hafees at msn dot com ¶

Use this function to convert a hexa decimal color code to its RGB equivalent. Unlike many other functions provided here, it will work correctly with hex color short hand notation.4

Use this function to convert a hexa decimal color code to its RGB equivalent. Unlike many other functions provided here, it will work correctly with hex color short hand notation.5

12 năm trước

Hàm có thể chuyển đổi các số quá lớn để phù hợp với loại Nền tảng Int, các giá trị lớn hơn được trả về dưới dạng nổi trong trường hợp đó.

Use this function to convert a hexa decimal color code to its RGB equivalent. Unlike many other functions provided here, it will work correctly with hex color short hand notation.7

Use this function to convert a hexa decimal color code to its RGB equivalent. Unlike many other functions provided here, it will work correctly with hex color short hand notation.8

Xem thêm

octdec () - bát phân đến thập phân

Also, if a proper hexa decimal color value is given (6 digits), it uses bit wise operations for faster results.0

Also, if a proper hexa decimal color value is given (6 digits), it uses bit wise operations for faster results.1

Also, if a proper hexa decimal color value is given (6 digits), it uses bit wise operations for faster results.2

Also, if a proper hexa decimal color value is given (6 digits), it uses bit wise operations for faster results.3

Also, if a proper hexa decimal color value is given (6 digits), it uses bit wise operations for faster results.4

Also, if a proper hexa decimal color value is given (6 digits), it uses bit wise operations for faster results.5

Also, if a proper hexa decimal color value is given (6 digits), it uses bit wise operations for faster results.6

Also, if a proper hexa decimal color value is given (6 digits), it uses bit wise operations for faster results.7

base_convert () - Chuyển đổi một số giữa các cơ sở tùy ý

octdec () - bát phân đến thập phân

Also, if a proper hexa decimal color value is given (6 digits), it uses bit wise operations for faster results.8

Also, if a proper hexa decimal color value is given (6 digits), it uses bit wise operations for faster results.9

For eg: #FFF and #FFFFFF will produce the same result0

base_convert () - Chuyển đổi một số giữa các cơ sở tùy ý

Hafees at msn dot com ¶

For eg: #FFF and #FFFFFF will produce the same result1

12 năm trước

chương trình tại Mundosica dot com ¶

For eg: #FFF and #FFFFFF will produce the same result2

For eg: #FFF and #FFFFFF will produce the same result3

For eg: #FFF and #FFFFFF will produce the same result4

10 năm trước

chương trình tại Mundosica dot com ¶

For eg: #FFF and #FFFFFF will produce the same result6

For eg: #FFF and #FFFFFF will produce the same result7

12 năm trước

chương trình tại Mundosica dot com ¶

For eg: #FFF and #FFFFFF will produce the same result9

/**
* Convert a hexa decimal color code to its RGB equivalent
*
* @param string $hexStr (hexadecimal color value)
* @param boolean $returnAsString (if set true, returns the value separated by the separator character. Otherwise returns associative array)
* @param string $seperator (to separate RGB values. Applicable only if second parameter is true.)
* @return array or string (depending on second parameter. Returns False if invalid hex color value)
*/                                                                                                
function hex2RGB($hexStr, $returnAsString = false, $seperator = ',') {
   
$hexStr = preg_replace("/[^0-9A-Fa-f]/", '', $hexStr); // Gets a proper hex string
   
$rgbArray = array();
    if (
strlen($hexStr) == 6) { //If a proper hex code, convert using bitwise operation. No overhead... faster
       
$colorVal = hexdec($hexStr);
       
$rgbArray['red'] = 0xFF & ($colorVal >> 0x10);
       
$rgbArray['green'] = 0xFF & ($colorVal >> 0x8);
       
$rgbArray['blue'] = 0xFF & $colorVal;
    } elseif (
strlen($hexStr) == 3) { //if shorthand notation, need some string manipulations
       
$rgbArray['red'] = hexdec(str_repeat(substr($hexStr, 0, 1), 2));
       
$rgbArray['green'] = hexdec(str_repeat(substr($hexStr, 1, 1), 2));
       
$rgbArray['blue'] = hexdec(str_repeat(substr($hexStr, 2, 1), 2));
    } else {
        return
false; //Invalid hex color code
   
}
    return
$returnAsString ? implode($seperator, $rgbArray) : $rgbArray; // returns the rgb string or the associative array
} ?>

OUTPUT:
0

/**
* Convert a hexa decimal color code to its RGB equivalent
*
* @param string $hexStr (hexadecimal color value)
* @param boolean $returnAsString (if set true, returns the value separated by the separator character. Otherwise returns associative array)
* @param string $seperator (to separate RGB values. Applicable only if second parameter is true.)
* @return array or string (depending on second parameter. Returns False if invalid hex color value)
*/                                                                                                
function hex2RGB($hexStr, $returnAsString = false, $seperator = ',') {
   
$hexStr = preg_replace("/[^0-9A-Fa-f]/", '', $hexStr); // Gets a proper hex string
   
$rgbArray = array();
    if (
strlen($hexStr) == 6) { //If a proper hex code, convert using bitwise operation. No overhead... faster
       
$colorVal = hexdec($hexStr);
       
$rgbArray['red'] = 0xFF & ($colorVal >> 0x10);
       
$rgbArray['green'] = 0xFF & ($colorVal >> 0x8);
       
$rgbArray['blue'] = 0xFF & $colorVal;
    } elseif (
strlen($hexStr) == 3) { //if shorthand notation, need some string manipulations
       
$rgbArray['red'] = hexdec(str_repeat(substr($hexStr, 0, 1), 2));
       
$rgbArray['green'] = hexdec(str_repeat(substr($hexStr, 1, 1), 2));
       
$rgbArray['blue'] = hexdec(str_repeat(substr($hexStr, 2, 1), 2));
    } else {
        return
false; //Invalid hex color code
   
}
    return
$returnAsString ? implode($seperator, $rgbArray) : $rgbArray; // returns the rgb string or the associative array
} ?>

OUTPUT:
1

10 năm trước

Dechex () - thập phân đến thập lục phân

/**
* Convert a hexa decimal color code to its RGB equivalent
*
* @param string $hexStr (hexadecimal color value)
* @param boolean $returnAsString (if set true, returns the value separated by the separator character. Otherwise returns associative array)
* @param string $seperator (to separate RGB values. Applicable only if second parameter is true.)
* @return array or string (depending on second parameter. Returns False if invalid hex color value)
*/                                                                                                
function hex2RGB($hexStr, $returnAsString = false, $seperator = ',') {
   
$hexStr = preg_replace("/[^0-9A-Fa-f]/", '', $hexStr); // Gets a proper hex string
   
$rgbArray = array();
    if (
strlen($hexStr) == 6) { //If a proper hex code, convert using bitwise operation. No overhead... faster
       
$colorVal = hexdec($hexStr);
       
$rgbArray['red'] = 0xFF & ($colorVal >> 0x10);
       
$rgbArray['green'] = 0xFF & ($colorVal >> 0x8);
       
$rgbArray['blue'] = 0xFF & $colorVal;
    } elseif (
strlen($hexStr) == 3) { //if shorthand notation, need some string manipulations
       
$rgbArray['red'] = hexdec(str_repeat(substr($hexStr, 0, 1), 2));
       
$rgbArray['green'] = hexdec(str_repeat(substr($hexStr, 1, 1), 2));
       
$rgbArray['blue'] = hexdec(str_repeat(substr($hexStr, 2, 1), 2));
    } else {
        return
false; //Invalid hex color code
   
}
    return
$returnAsString ? implode($seperator, $rgbArray) : $rgbArray; // returns the rgb string or the associative array
} ?>

OUTPUT:
3

/**
* Convert a hexa decimal color code to its RGB equivalent
*
* @param string $hexStr (hexadecimal color value)
* @param boolean $returnAsString (if set true, returns the value separated by the separator character. Otherwise returns associative array)
* @param string $seperator (to separate RGB values. Applicable only if second parameter is true.)
* @return array or string (depending on second parameter. Returns False if invalid hex color value)
*/                                                                                                
function hex2RGB($hexStr, $returnAsString = false, $seperator = ',') {
   
$hexStr = preg_replace("/[^0-9A-Fa-f]/", '', $hexStr); // Gets a proper hex string
   
$rgbArray = array();
    if (
strlen($hexStr) == 6) { //If a proper hex code, convert using bitwise operation. No overhead... faster
       
$colorVal = hexdec($hexStr);
       
$rgbArray['red'] = 0xFF & ($colorVal >> 0x10);
       
$rgbArray['green'] = 0xFF & ($colorVal >> 0x8);
       
$rgbArray['blue'] = 0xFF & $colorVal;
    } elseif (
strlen($hexStr) == 3) { //if shorthand notation, need some string manipulations
       
$rgbArray['red'] = hexdec(str_repeat(substr($hexStr, 0, 1), 2));
       
$rgbArray['green'] = hexdec(str_repeat(substr($hexStr, 1, 1), 2));
       
$rgbArray['blue'] = hexdec(str_repeat(substr($hexStr, 2, 1), 2));
    } else {
        return
false; //Invalid hex color code
   
}
    return
$returnAsString ? implode($seperator, $rgbArray) : $rgbArray; // returns the rgb string or the associative array
} ?>

OUTPUT:
4

/**
* Convert a hexa decimal color code to its RGB equivalent
*
* @param string $hexStr (hexadecimal color value)
* @param boolean $returnAsString (if set true, returns the value separated by the separator character. Otherwise returns associative array)
* @param string $seperator (to separate RGB values. Applicable only if second parameter is true.)
* @return array or string (depending on second parameter. Returns False if invalid hex color value)
*/                                                                                                
function hex2RGB($hexStr, $returnAsString = false, $seperator = ',') {
   
$hexStr = preg_replace("/[^0-9A-Fa-f]/", '', $hexStr); // Gets a proper hex string
   
$rgbArray = array();
    if (
strlen($hexStr) == 6) { //If a proper hex code, convert using bitwise operation. No overhead... faster
       
$colorVal = hexdec($hexStr);
       
$rgbArray['red'] = 0xFF & ($colorVal >> 0x10);
       
$rgbArray['green'] = 0xFF & ($colorVal >> 0x8);
       
$rgbArray['blue'] = 0xFF & $colorVal;
    } elseif (
strlen($hexStr) == 3) { //if shorthand notation, need some string manipulations
       
$rgbArray['red'] = hexdec(str_repeat(substr($hexStr, 0, 1), 2));
       
$rgbArray['green'] = hexdec(str_repeat(substr($hexStr, 1, 1), 2));
       
$rgbArray['blue'] = hexdec(str_repeat(substr($hexStr, 2, 1), 2));
    } else {
        return
false; //Invalid hex color code
   
}
    return
$returnAsString ? implode($seperator, $rgbArray) : $rgbArray; // returns the rgb string or the associative array
} ?>

OUTPUT:
5

Bindec () - nhị phân đến thập phân

octdec () - bát phân đến thập phân

/**
* Convert a hexa decimal color code to its RGB equivalent
*
* @param string $hexStr (hexadecimal color value)
* @param boolean $returnAsString (if set true, returns the value separated by the separator character. Otherwise returns associative array)
* @param string $seperator (to separate RGB values. Applicable only if second parameter is true.)
* @return array or string (depending on second parameter. Returns False if invalid hex color value)
*/                                                                                                
function hex2RGB($hexStr, $returnAsString = false, $seperator = ',') {
   
$hexStr = preg_replace("/[^0-9A-Fa-f]/", '', $hexStr); // Gets a proper hex string
   
$rgbArray = array();
    if (
strlen($hexStr) == 6) { //If a proper hex code, convert using bitwise operation. No overhead... faster
       
$colorVal = hexdec($hexStr);
       
$rgbArray['red'] = 0xFF & ($colorVal >> 0x10);
       
$rgbArray['green'] = 0xFF & ($colorVal >> 0x8);
       
$rgbArray['blue'] = 0xFF & $colorVal;
    } elseif (
strlen($hexStr) == 3) { //if shorthand notation, need some string manipulations
       
$rgbArray['red'] = hexdec(str_repeat(substr($hexStr, 0, 1), 2));
       
$rgbArray['green'] = hexdec(str_repeat(substr($hexStr, 1, 1), 2));
       
$rgbArray['blue'] = hexdec(str_repeat(substr($hexStr, 2, 1), 2));
    } else {
        return
false; //Invalid hex color code
   
}
    return
$returnAsString ? implode($seperator, $rgbArray) : $rgbArray; // returns the rgb string or the associative array
} ?>

OUTPUT:
7

/**
* Convert a hexa decimal color code to its RGB equivalent
*
* @param string $hexStr (hexadecimal color value)
* @param boolean $returnAsString (if set true, returns the value separated by the separator character. Otherwise returns associative array)
* @param string $seperator (to separate RGB values. Applicable only if second parameter is true.)
* @return array or string (depending on second parameter. Returns False if invalid hex color value)
*/                                                                                                
function hex2RGB($hexStr, $returnAsString = false, $seperator = ',') {
   
$hexStr = preg_replace("/[^0-9A-Fa-f]/", '', $hexStr); // Gets a proper hex string
   
$rgbArray = array();
    if (
strlen($hexStr) == 6) { //If a proper hex code, convert using bitwise operation. No overhead... faster
       
$colorVal = hexdec($hexStr);
       
$rgbArray['red'] = 0xFF & ($colorVal >> 0x10);
       
$rgbArray['green'] = 0xFF & ($colorVal >> 0x8);
       
$rgbArray['blue'] = 0xFF & $colorVal;
    } elseif (
strlen($hexStr) == 3) { //if shorthand notation, need some string manipulations
       
$rgbArray['red'] = hexdec(str_repeat(substr($hexStr, 0, 1), 2));
       
$rgbArray['green'] = hexdec(str_repeat(substr($hexStr, 1, 1), 2));
       
$rgbArray['blue'] = hexdec(str_repeat(substr($hexStr, 2, 1), 2));
    } else {
        return
false; //Invalid hex color code
   
}
    return
$returnAsString ? implode($seperator, $rgbArray) : $rgbArray; // returns the rgb string or the associative array
} ?>

OUTPUT:
8

base_convert () - Chuyển đổi một số giữa các cơ sở tùy ý

octdec () - bát phân đến thập phân

hex2RGB("#FF0") -> array( red =>255, green => 255, blue => 0)
hex2RGB("#FFFF00) -> Same as above
hex2RGB("#FF0", true) -> 255,255,0
hex2RGB("#FF0", true, ":") -> 255:255:0
0

hex2RGB("#FF0") -> array( red =>255, green => 255, blue => 0)
hex2RGB("#FFFF00) -> Same as above
hex2RGB("#FF0", true) -> 255,255,0
hex2RGB("#FF0", true, ":") -> 255:255:0
1

hex2RGB("#FF0") -> array( red =>255, green => 255, blue => 0)
hex2RGB("#FFFF00) -> Same as above
hex2RGB("#FF0", true) -> 255,255,0
hex2RGB("#FF0", true, ":") -> 255:255:0
2

hex2RGB("#FF0") -> array( red =>255, green => 255, blue => 0)
hex2RGB("#FFFF00) -> Same as above
hex2RGB("#FF0", true) -> 255,255,0
hex2RGB("#FF0", true, ":") -> 255:255:0
3

base_convert () - Chuyển đổi một số giữa các cơ sở tùy ý

octdec () - bát phân đến thập phân

hex2RGB("#FF0") -> array( red =>255, green => 255, blue => 0)
hex2RGB("#FFFF00) -> Same as above
hex2RGB("#FF0", true) -> 255,255,0
hex2RGB("#FF0", true, ":") -> 255:255:0
4

hex2RGB("#FF0") -> array( red =>255, green => 255, blue => 0)
hex2RGB("#FFFF00) -> Same as above
hex2RGB("#FF0", true) -> 255,255,0
hex2RGB("#FF0", true, ":") -> 255:255:0
5

hex2RGB("#FF0") -> array( red =>255, green => 255, blue => 0)
hex2RGB("#FFFF00) -> Same as above
hex2RGB("#FF0", true) -> 255,255,0
hex2RGB("#FF0", true, ":") -> 255:255:0
6

hex2RGB("#FF0") -> array( red =>255, green => 255, blue => 0)
hex2RGB("#FFFF00) -> Same as above
hex2RGB("#FF0", true) -> 255,255,0
hex2RGB("#FF0", true, ":") -> 255:255:0
7

base_convert () - Chuyển đổi một số giữa các cơ sở tùy ý

Hafees at msn dot com ¶

hex2RGB("#FF0") -> array( red =>255, green => 255, blue => 0)
hex2RGB("#FFFF00) -> Same as above
hex2RGB("#FF0", true) -> 255,255,0
hex2RGB("#FF0", true, ":") -> 255:255:0
8

hex2RGB("#FF0") -> array( red =>255, green => 255, blue => 0)
hex2RGB("#FFFF00) -> Same as above
hex2RGB("#FF0", true) -> 255,255,0
hex2RGB("#FF0", true, ":") -> 255:255:0
9

0

1

2

12 năm trước

Hafees at msn dot com ¶

3

4

5

12 năm trước

chương trình tại Mundosica dot com ¶

Hafees at msn dot com ¶

7

8

9

hex_string00

hex_string01

12 năm trước

Hafees at msn dot com ¶

hex_string02

hex_string03

12 năm trước

chương trình tại Mundosica dot com ¶

hex_string05

hex_string06

hex_string07

hex_string08

10 năm trước

chương trình tại Mundosica dot com ¶

hex_string10

hex_string11

hex_string12

hex_string13

hex_string14

hex_string15

hex_string16

hex_string17

10 năm trước

K10206 tại Naver Dot Com ¶

hex_string19

hex_string20

hex_string21

hex_string22

15 năm trước

octdec () - bát phân đến thập phân

hex_string24

hex_string25

hex_string26

hex_string27

hex_string28

hex_string29

base_convert () - Chuyển đổi một số giữa các cơ sở tùy ý

Ghi chú

hex_string31

hex_string32

hex_string33

hex_string34

Ghi chú:

Ghi chú

hex_string35

hex_string36

hex_string37

hex_string38

hex_string39