Tagged Questions
1
vote
1answer
781 views
How to change HEX value to EBCDIC char
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";
...