I want to initialize a String in Java, but that string needs to include quotes; for example: \"ROM\". I tried doing:
\"ROM\"
String value = \" \"ROM\" \
In Java, you can use char value with ":
char quotes ='"'; String strVar=quotes+"ROM"+quotes;