ಸುದ್ದಿ

Since everything in memory is stored as a binary value, we need to convert the letter 'A' into some type of numeric value in order to store it. ASCII is a standard for encoding characters as decimal ...
Character.getNumericValue(aChar) will let me convert a char into an int. I want to know how I can reverse the process and get a char from an integer? Thanks.