Characters and Strings (briefly)
char date type
- ASCII plus stuff = UNICODE
- A character literal uses single quotes: ‘b’
- char firstChar = ‘b’
String is not a primitive type, it’s a Class
Strings represented as objects of the String class
String manipulation can get complicated -- see text for more details