Example: There is a text box where user input ASCII special character within the text
"(less than bracket)STX(greater than bracket)Do You Know Da Wae (less than bracket)EOT(greater than bracket)"
the compiler should know how to convert to the following string..
String str = "\x02Do You Know Da Wae \x03";
Should use regex to do perform the job or is there any other way to do so?