如何在 kotlin 中获取字符的 unicode 值?

How to get unicode value of a character in kotlin?

一种将字符转换为 Unicode 的简单方法。例如。对于 § 我们需要获得 Unicode 值“U+00A7”

这是一个将char转换成Unicode的程序。注意 char.code 是旧格式 char.toInt()

// Kotlin program to find Unicode value of a character
fun main(args: Array<String>) {
    // Unicode table at https://unicode-table.com/en/
    val char = '§'
   
    // Unicode logic
    val uni= String.format("u+%04x", char.code).uppercase()

    println("The Unicode value of $char is: $uni")
}

这里有一个Githublink试试https://github.com/vidyesh95/UnicodeValueInKotlin