Does Java have a variant of the fromCharCode() method that is found in JavaScript?
This is the what I want to accomplish in Java:
This JavaScript changes each digit to a ASCII character according to the number. So, does Java have a similar method to convert digits into ASCII characters?Code:<script type="text/javascript">
document.write(String.fromCharCode(72, 69, 76, 76, 79));
</script>

