About 34,500 results
Open links in new tab
  1. Python:Ascii character<->decimal representation conversion

    Dec 8, 2010 · Hi I need to be able to convert a ascii character into its decimal equivalent and vice-versa. How can I do that?

  2. c - ASCII to decimal value - Stack Overflow

    Dec 16, 2014 · 6 The characters that represent decimal digits are laid out in ASCII space in numerical order. '0' is ASCII 0x30 '1' is ASCII 0x31 '2' is ASCII 0x32 and so on. This means …

  3. How to convert Decimal to ASCII in c#.net? - Stack Overflow

    Feb 5, 2015 · 1 Can anyone help me on how to convert decimal to ASCII using C#.net? When I input a decimal into the textbox1, after clicking the CONVERT button then the result will …

  4. packed decimal to ascii assembly - Stack Overflow

    Dec 3, 2013 · I'm trying to convert packed decimal numbers into ascii strings. Here is my understanding thus far: The following: bcd BYTE 34h Should convert to the decimal number …

  5. Convert from ASCII string encoded in Hex to plain ASCII?

    How can I convert from hex to plain ASCII in Python? Note that, for example, I want to convert "0x7061756c" to "paul".

  6. How to convert an ASCII character into an int in C

    Mar 16, 2011 · A char value in C is implicitly convertible to an int. e.g, char c; ... printf("%d", c) prints the decimal ASCII value of c, and int i = c; puts the ASCII integer value of c in i. You can …

  7. Unpacking EBCDIC Packed Decimals (COMP-3) in an ASCII …

    Mar 5, 2010 · I am using Jon Skeet's EBCDIC implementation in .NET to read a VSAM file downloaded in binary mode with FTP from a mainframe system. It works very well for …

  8. Convert character to ASCII code in JavaScript - Stack Overflow

    Sep 18, 2008 · How can I convert a character to its ASCII code using JavaScript? For example: get 10 from &quot;\\n&quot;.

  9. Convert int to ASCII and back in Python - Stack Overflow

    Feb 28, 2017 · Convert int to ASCII and back in Python Asked 15 years, 2 months ago Modified 3 years, 2 months ago Viewed 531k times

  10. C#: Convert COMP-3 Packed Decimal to Human-Readable Value

    I have a series of ASCII flat files coming in from a mainframe to be processed by a C# application. A new feed has been introduced with a Packed Decimal (COMP-3) field, which needs to be …