How to change HEX value to EBCDIC char
Posted
by vininet
on Stack Overflow
See other posts from Stack Overflow
or by vininet
Published on 2010-05-19T06:35:44Z
Indexed on
2010/05/19
6:40 UTC
Read the original article
Hit count: 314
What is the simplest way to convert HEX value to ebcdic char type in Java
e.g. The example below will return at sign but I would like to get ebcidic equivalent i.e. space char..
String hex = "40"; char c = (char) Integer.parseInt(hex, 16);
© Stack Overflow or respective owner