Value type - char

suggest change
// single character s
char c = 's';

// character s: casted from integer value
char c = (char)115;

// unicode character: single character s
char c = '\u0073';

// unicode character: smiley face
char c = '\u263a';

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents