Open In App

Scala Byte toChar() method

Last Updated : 30 Jan, 2020
Comments
Improve
Suggest changes
Like Article
Like
Report
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.
Method Definition: (Number).toChar Return Type: It returns converted Char value.
Example #1: Scala
// 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) 
    
    } 
} 
Output:
D
Example #2: Scala
// 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) 
    
    } 
} 
Output:
{

Next Article
Article Tags :
Practice Tags :

Similar Reads