Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
class Scratch { public static void main(String[] args) { char c = '\u005c''; String s = "\u005c""; System.out.println(c); System.out.println(s); } } This is a working ...