About 121,000 results
Open links in new tab
  1. Converting a decimal to a hexadecimal number - Stack Overflow

    1 Hexadecimal number is a number represented using 16 symbols which are 0 -9 numbers and A – F alphabets. Procedure to write a c program to convert decimal number to hexadecimal is: …

  2. How to convert decimal to hexadecimal in JavaScript

    Apr 12, 2019 · 7 As the accepted answer states, the easiest way to convert from decimal to hexadecimal is var hex = dec.toString(16). However, you may prefer to add a string …

  3. function - Python convert decimal to hex - Stack Overflow

    1 I recently made this python program to convert Decimal to Hexadecimal, please check this out. This is my first Answer in stack overflow .

  4. hex - Decimal to Hexadecimal Converter in Java - Stack Overflow

    Nov 20, 2012 · 23 I have a homework assignment where I need to do three-way conversion between decimal, binary and hexadecimal. The function I need help with is converting a …

  5. How to convert numbers between hexadecimal and decimal

    How to convert numbers between hexadecimal and decimal Asked 17 years, 3 months ago Modified 1 year, 2 months ago Viewed 460k times

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

    Feb 9, 2012 · Are you sure you want to convert the data to "decimal"? The Perl function simply converts a hex string to an integer, not to a decimal string.

  7. How to make a decimal to hexadecimal converter in C

    Read the decimal as a normal integer (base 10) and print it as a hexadecimal number?

  8. 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 …

  9. Decimal to hexadecimal conversion code in C++ - Stack Overflow

    Decimal to hexadecimal conversion code in C++ Asked 10 years, 8 months ago Modified 3 years, 3 months ago Viewed 57k times

  10. Oracle: How do I convert hex to decimal in Oracle SQL?

    Aug 4, 2009 · Thank you for sharing the decimal number to hexadecimal string in you answer, even though it exceeded OP's question.