Open In App

Scala Float toChar() method with example

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

Article Tags :