I am getting a string as "\123" from input and since \ with number is a valid syntax, java is converting it to ASCII. But I want to treat it as "\123". I was trying to search for raw strings as python but could not find anything. Also tried to check escape-utils but it is also not giving the expected output.
Any pointers to resolve the issue are appreciated.