About 2,680,000 results
Open links in new tab
  1. Convert hex string to integer in Python - Stack Overflow

    Oct 16, 2008 · Worth repeating "Letting int infer If you pass 0 as the base, int will infer the base from the prefix in the string." How to convert from hexadecimal or decimal (or binary) to integer as python …

  2. How do I convert hex to decimal in Python? - Stack Overflow

    Feb 9, 2012 · I have some Perl code where the hex() function converts hex data to decimal. How can I do it on Python?

  3. How to convert numbers between hexadecimal and decimal

    How do you convert between hexadecimal numbers and decimal numbers in C#?

  4. c - How to convert Hexadecimal to Decimal? - Stack Overflow

    That can only convert up to max LONG_MAX. On 32bit systems usually this can be a problem when reading RFID tags in hexa and trying to convert them into human readable decimal format.

  5. T-SQL Convert Hex to decimal - Stack Overflow

    Oct 9, 2013 · 1 I don't think T-SQL can explicitly convert a string of hex to a number, but it CAN convert a hex number so you can kind of trick it into doing what you want. Like this:

  6. Convert hex in text representation to decimal number

    For more than 8 hex digits the least significant characters (excess to the right) get truncated. 4 bits in a bit string encode 1 hex digit. Hex numbers of known length can be cast to the respective bit(n) …

  7. vba - Hexadecimal to Decimal In Excel - Stack Overflow

    Aug 31, 2021 · I am trying to convert a Hexadecimal value to a decimal one in excel with this reference. Used parameters and formulas: Input Hex value : 0x044F3B9AFA6C80 and expected output : …

  8. Convert integer to hex and hex to integer - Stack Overflow

    When using 8-character Hex, such as with ARGB convert to BIGINT instead of INT. The max value for INT is only 2,147,483,647, or 7FFFFFFF. Beware when using INT, the round trip back to hex will …

  9. bash - Hexadecimal To Decimal in Shell Script - Stack Overflow

    Nov 8, 2012 · Can someone help me to convert a hexadecimal number to decimal number in a shell script? E.g., I want to convert the hexadecimal number bfca3000 to decimal using a shell script.

  10. Hex to Decimal Conversion - PowerShell 5 - Stack Overflow

    Jul 25, 2016 · For some reason, when converting some values in PowerShell from Hex to Decimal, I get incorrect value. For example: - Type 0xC0000000 then hit enter, you'll get -1073741824 which is …