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
As chars can be represented as Integers (ASCII-Codes), you can simply write:
chars
char c = 0;
The 0 in ASCII-Code is null.
null