Open In App

Scala Int toChar() method with example

Improve
Improve
Like Article
Like
Save
Share
Report

The toChar() method is utilized to convert the specified int number into char type value.

Method Definition: (Number).toChar

Return Type: It returns the converted char datatype value.

Example #1:




// Scala program of Int toChar()
// method
  
// Creating object
object GfG
  
    // Main method
    def main(args:Array[String])
    {
      
        // Applying toChar method
        val result = (64).toChar
          
        // Displays output
        println(result)
    }


Output:

@

Example #2:




// Scala program of Int 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


Last Updated : 04 Feb, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads