blah blah blah is here! blah blah » Close

0
votes
1 answers

Convert String from HEX to DEC to ASCII.

I need to have this conversion, from HEX to DEC to ASCII. or if possible, direct conversion from HEX to ASCII. e.g input string = 01344583 (HEX) intermediate string = 20202883 (DEC) string abc = "01344583"; int def = i ...

Feedback