javascriptnaming-conventionsinvalid-characters

Why aren't ◎ܫ◎ and ☺ valid JavaScript variable names?


I noticed that in Internet Explorer (but, unfortunately, not in the other browsers I tested), you can use some Unicode variable names. This made my day, and I was absolutely delighted that I could write fun Unicode-laden code like this:

var ктоείναι草泥马 = "You dirty horse.",
    happy☺n☺mat☺p☺eia = ":)Yay!",
    ಠ_ಠ = "emoticon";

alert(ктоείναι草泥马 + happy☺n☺mat☺p☺eia + ಠ_ಠ);

For some reason, though, ◎ܫ◎, ♨_♨ and are not valid variable names.

Why do ಠ_ಠ and 草泥马 work, but not ◎ܫ◎, ♨_♨ or ?


Solution

  • ಠ_ಠ 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.

    The following characters of an identifier must be one of the following.

    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.