I want to represent an empty character in Java as \"\" in String...
\"\"
Like that char ch = an empty character;
char ch = an empty character;
Actually I want to rep
You can't. "" is the literal for a string, which contains no characters. It does not contain the "empty character" (whatever you mean by that).