Is there a way for java to convert int\'s to ascii symbols?
The most simple way is using type casting:
public char toChar(int c) { return (char)c; }