In Scala, Byte is a 8-bit signed integer (equivalent to Java’s byte primitive type). The toChar() method is utilized to convert the specified number into Char datatype value.
Scala Output:
Scala Output:
Method Definition: (Number).toChar Return Type: It returns converted Char value.Example #1:
// Scala program of Byte toChar()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying toChar method
val result = (68).toChar
// Displays output
println(result)
}
}
DExample #2:
// Scala program of Byte toChar()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Applying toChar method
val result = (123).toChar
// Displays output
println(result)
}
}
{