score:42

Accepted answer

html entities (©) need to be added as innerHTML. For text, use Unicode:

alert('\u00A9')

score:5

You can use one of these options.

  1. \251 is the octal sequence
  2. \xA9 is the hexadecimal sequence
  3. \u00A9 is the Unicode sequence

for example alert('\251');


Related Query

More Query from same tag