I tried many ways to get a single backslash from an executed (I don't mean an input from html). I can get special characters as tab, new line and many others
Is there someone who knows how to consider the backslash as a normal character (not an escape character) in a string in Java? Any help will be appreciated!
The following script yielded an unexpected output: printf "escaped slash: \\ \n" printf "2 escaped slashes: \\\\ \n" printf "3 escaped slashes: \\\\\\ \n" prin