0 votes
in JAVA by
How to find out the ASCII value of a character in java?

1 Answer

0 votes
by

How to find out the ASCII value of a character in java?

int c=char(‘A’) would give the ASCII value of A in java.

...