ಠ_ಠ
and 草泥马 only contain “letters” used in actual alphabets; that is, ಠ
is a symbol from the Kannada alphabet, and 草泥马 consists of Chinese characters.
◎ and ☺, however, are purely symbols; they are not associated with any alphabet.
The ECMAScript standard, chapter 7.6 (which all the browsers except Internet Explorer are following), states that an identifier must start with one of the following.
- a Unicode letter
$
or_
\
followed by a unicode escape sequence.
The following characters of an identifier must be one of the following.
- any of the characters permitted at the start
- a Unicode combining mark
- a Unicode digit
- a Unicode connector punctuation
- a zero-width-non-joiner
- a zero-width joiner
IE goes beyond the standard and is permissive enough to allow some symbols, such as ☺.
There’s a tool that will tell you if any string that you enter is a valid JavaScript variable name according to ECMAScript 5.1 and Unicode 6.1.