Open In App

Scala Float toChar() method with example

Improve
Improve
Like Article
Like
Save
Share
Report

The toChar() method is utilized to convert the specified number into character value. Here the specified number is ASCII value.

Method Definition: (Number).toChar

Return Type: It returns the converted character value.

Example #1:




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


Output:

B

Example #2:




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


Output:

P


Last Updated : 29 Oct, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads