Apr 17, 2007 #1 BonneSwe Programmer Joined Apr 17, 2007 Messages 1 Location SE Hi, Where can I find a charcter map on how to code special characters for both mac och pc in an alert in javascript? I have the folloing codes: å = Œ ä = Š ö = š é = ž Å = (missing!!!) Ä = € Ö = _ É = ƒ /BonneSwe
Hi, Where can I find a charcter map on how to code special characters for both mac och pc in an alert in javascript? I have the folloing codes: å = Œ ä = Š ö = š é = ž Å = (missing!!!) Ä = € Ö = _ É = ƒ /BonneSwe
Apr 17, 2007 #2 rac2 Programmer Joined Apr 26, 2001 Messages 1,871 Location US Maybe Code: <script> var charX = "\u00C5"; document.write(charX); alert("Hello \u00C5 Again");</script> http://www.unicode.org/charts/PDF/U0180.pdfand http://www.unicode.org/charts/thanks to http://northonline.sccd.ctc.edu/offenback/CSC110-Resources/ImportantEscapeSequences.htm Upvote 0 Downvote
Maybe Code: <script> var charX = "\u00C5"; document.write(charX); alert("Hello \u00C5 Again");</script> http://www.unicode.org/charts/PDF/U0180.pdfand http://www.unicode.org/charts/thanks to http://northonline.sccd.ctc.edu/offenback/CSC110-Resources/ImportantEscapeSequences.htm