uppercaseChar
Converts this character to upper case using Unicode mapping rules of the invariant locale.
expect fun Char.uppercaseChar(): Char(source)
fun main() {
val lower = 'k'
val upper = lower.uppercaseChar()
println("Lower: $lower, Upper: $upper") // Output: Lower: k, Upper: K
}