character-tranformation

Unicode value \uXXXX to Character in Javascript

I've never done this before and am not sure why it's outputting the infamous � encoding character. Any ideas on how to output characters as they should (ASCII+Unicode)? I think \u0041-\u005A should print A-Z in UTF-8, which Firefox is reporting is the page encoding. var c = new Array("F","E","D","C","B","A",9,8,7,6,5,4,3,2,1,0); ...