Kotlin - Data Types
What is the output of the following Kotlin code?
val ch: Char = '\u0041' println(ch)
val ch: Char = '\u0041' println(ch)
\u0041 represents the character 'A' in Unicode.ch outputs the character itself, which is 'A'.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions