Open In App

Scala Int toHexString() method with example

Last Updated : 30 Jan, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

The toHexString() method is utilized to return the hexa decimal form of the specified integer value.

Method Definition: def toHexString: String

Return Type: It returns the Hexa decimal form of the specified integer value.

Example #1:




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


Output:

5

Example #2:




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


Output:

12


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads