JAVA Character Set
Character set is a set of valid characters that a language can recognise.
A character represents any letter, digit or any other sign.
Java uses the Unicode character set.
Unicode is a character coding scheme that has character codes for numbers, arithmetic symbols, special characters and for the letters in almost all the languages in the world.
Tokens
The smallest individual unit in a program is known as a token.
Java has the following tokens:
Keywords
Identifiers
Identifier forming rules of Java
Literals
Operators
Operators are tokens which perform specific operations on data.
Examples:
Separators
() - parenthesis
{} - curly braces
[] - square brackets
; - semi colon
, comma
. dot