Java-PL/SQL Comparison
uJava Examples:
uThe char datatype can only represent a single character or symbol, and may be initialized as follows:
u// decimal equivalent of letter 'a' char myFirstChar = 97;
u// using a character
char mySecondChar = 'a';
u// octal equivalent of letter 'a' char myThirdChar = '\141';
u// Unicode (Hex) value for 'a'
u   char myFourthChar = '\u0061' ;
uPL/SQL Example:
uThe CHAR datatype is a fixed length string.
u
uv_string_char CHAR(48) := 'Datatype CHAR is a fixed length string in PL/SQL';
u
u
Char Datatype Examples
Java vs. PL/SQL