Looking at your source code, it seems like it is Java.
Also, this seems corrupted:
'锛� == body.charAt(body.length()-1)
and probably should read
'锛' == body.charAt(body.length()-1)
With this in mind, you have 2 options:
Make sure that your source code is saved as UTF-8. There are few ways to check this, on Windows I would recommend using Notepad++ and select save as UTF-8 without BOM option.
Use \uHHHH syntax for your non-ASCII constants. As far as I can tell, your 锛 character should be encoded as U+951B, so you can use this instead:
'\U951B' == body.charAt(body.length()-1)