About 33,600 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. 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 …

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

  5. python - Convert decimal value to ascii - Stack Overflow

    Apr 16, 2021 · I know about the chr () function to convert a single character Decimal value to an ascii character but I'm wondering how this can be done with a whole string, and how, if I were …

  6. Converting Decimal to ASCII Character - Stack Overflow

    Oct 3, 2009 · When char_num1 and char_num2 are added, I get the new ascii decimal value. However, when I try to convert the new decimal value to a character, I do not get the character …

  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 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".

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

    Feb 28, 2017 · I had arrived on this question based on the title, literally converting an integer to ascii text as if the integer has ascii encoded data embedded in its bytes.

  10. How to convert ASCII text to decimal bytes? [duplicate]

    Jan 17, 2024 · Looks for the users input (text) such as "Hello world" Converts the text given into decimal bytes, and prints the conversion, such as "72, 101, 108, 108, 111, 32, 119, 111, 114, …