Valid characters in a Java class name
You can have almost any character, including most Unicode characters! The exact definition is in the Java Language Specification under section 3.8: Identifiers. An identifier is an unlimited-length sequence of Java letters and Java digits, the first of which must be a Java letter. … Letters and digits may be drawn from the entire Unicode … Read more