There are certain symbols in HTML that always seem to break your program. These include math, currency, greek alphabet symbol, etc. Either they are not available in your keyboard or browser to interpret them differently to what you intended. So here is the list to HTML code for different symbol and JavaScript escape sequence for the same.

Capital Letters: All the letters starting from A and ending at Z has special HTML code and JS Escape Sequence. In HTML, they start with &#65, and end at &#90, and in JavaScript they increase from A to I with \u0041 to \u0048 respectively and then from J to O representation changes to \u004A to \u004F. Then from P to Y, the value increases from \u0055 to \u0059. Finally for Z we have \u005A.

#html #javascript #web technologies #web technologies questions #html-misc #programming

JS Escape Sequence | HTML Entity
1.10 GEEK