Originally posted by James Tharakan:
c = '\u0042';
this statement assigns B to the variable c.
Can any one explain that?
Then what is the value of other alphabets?
using the '\u0042' notation say that "I want you to use the unicode character with the value of 42".
You can find all unicode tables at
http://www.unicode.org/versions/Unicode5.1.0/ or
http://www.unicode.org/charts/ if you want to look at the code-charts. Unicode is over 100.000 characters so you can express a lot.
If you use '\u03A9' you get the Greek Omega-sign.