I got into an interesting discussion in a forum where we discussed the naming of variables.
Conventions aside, I noticed that it is legal for a variable to have the name of a Unicode character. For example, the following is legal:
int \u1234; However, if I for example gave it the name #, it produces an error. According to Sun's tutorial, it is valid if "beginning with a letter, the dollar sign "$", or the underscore character "_"."
But the Unicode 1234 is some Ethiopian character. So what is really defined as a "letter"?
AUTH_✅andAUTH_❌so everything lined up nicely and it was easy to read at a glance. I was actually surprised to learn that these types of characters weren't allowed in identifiers.