The application consists of the Hex to string or visa versa conversions.
The Service helps with the below conversions:-
1. String to HEX
first take each charcter using substring.
then convert character into ascii.
then convert ascii value into Hex Format
2. HEX to String
first take two hex value using substring.
then convert Hex value into ascii.
then convert ascii value into character.