can anybody send me the code snippet to find the ascii value of character?
code for Ascii value?
Collapse
X
-
Tags: None
-
Originally posted by Ganon11Should be
Code:System.out.println((int)yourChar);
thanks buddy....
but i forgot to mention that i want the code in java script....
so please if u know that also pls replyComment
-
Originally posted by r035198xCode:char c = 'A'; int i = (int) c; System.out.println(i);
thanks buddy....
but i forgot to mention that i want the code in java script....
so please if u know that also pls replyComment
-
-
Comment