How to convert char to digit in Java

1 Answer

0 votes
public class MyClass {
    public static void main(String args[]) {
        char ch = '3';
        
        int digit = Character.getNumericValue(ch);
        
        System.out.println(digit);
    }
}
 
 
 
 
/*
run:
 
3
 
*/

 



answered May 27, 2023 by avibootz

Related questions

1 answer 232 views
232 views asked Apr 2, 2017 by avibootz
1 answer 186 views
1 answer 182 views
182 views asked May 29, 2020 by avibootz
2 answers 252 views
3 answers 321 views
321 views asked Apr 3, 2017 by avibootz
2 answers 249 views
2 answers 257 views
...