Home »
Scala »
Scala Programs
Scala program to print the ASCII value of the corresponding character
Here, we are going to learn how to print the ASCII value of the corresponding character in Scala programming language?
Submitted by Nidhi, on April 26, 2021 [Last updated : March 09, 2023]
Scala – Print ASCII Value of a Character
Here, we will get the ASCII value of a character and print it on the console screen.
Scala code to print the ASCII value of the corresponding character
The source code to print the ASCII value of the corresponding character is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.
// Scala program to print the ASCII value
// of corresponding character
object Sample{
def main(args:Array[String]){
var ch:Char='A'
println("Character value: "+ch)
println("ASCII value : "+ch.toInt)
}
}
Output
Character value: A
ASCII value : 65
Explanation
In the above program, we used an object-oriented approach to create the program. Here, we created an object Sample. We defined main() function. The main() function is the entry point for the program.
In the main() function, we created a character variable ch with initial value 'A'. Here, we get the ASCII value of a character using the toInt method and then printed the character and ASCII value on the console screen.
Scala Basic Programs »