1. I want to be able to convert numbers into text according to the ASCII decimal table stackoverflow.comI am trying to make it so that I can take individual three-character substrings and convert them to integers under the conditions tht the length of the String is a multiple ... |
2. Ascii to Decimal - Eating my Brain. Urgent please coderanch.comDear Friends I am facing pblm while converting ascii to dec. at present my program is supporting to this.. ascii dec a 61 but, when i give "aa" it is still saying 61 as decimal. how can i make my program to get this type of result aa 6161 aaa 616161 is it possible. please help me. Thanks in advance Yours ... |
3. ascii decimal conversion problem coderanch.comI need a way to take the output of a JSpinner with a custom value list - 00, 01, 02, etc, to 10 - and convert that to an ASCII decimal sequence. For example, "00" would like "48 48" and so on. I don't know how to do that conversion - a hint or a link would be helpful. The second ... |
4. How to Return Extended ASCII Decimal Code coderanch.comI am trying understand how I can return the extended ASCII decimal value for characters in the 128 to 159 range using the default Windows codepage instead of a negative value. Example String character = new String(new byte[] { (byte) 150 }, "Cp1252"); System.out.println("character: " + character); System.out.println(Arrays.toString(character.getBytes("Cp1252"))); Results character: [-106] Instead of returning 150 in this exampe it returns ... |
5. How to convert between ASCII and EBCDIC PACKED DECIMAL (COMP-3) forums.oracle.com |
6. Binary Coded Decimal to ASCII forums.oracle.com |
7. How to convert 77 to 'M'? (Decimal to Ascii) forums.oracle.com |