toUShort

Converts this Byte value to UShort.

inline fun Byte.toUShort(): UShort(source)
fun main() {
    val b: Byte = 120
    val u: UShort = b.toUShort()
    println("Converted UShort value: $u")  // Output: Converted UShort value: 120
}

Source