Java Character MIN_RADIX
Syntax
Character.MIN_RADIX has the following syntax.
public static final int MIN_RADIX
Example
In the following code shows how to use Character.MIN_RADIX field.
public class Main {
/* w w w . j av a2 s . c o m*/
public static void main(String[] args) {
System.out.println("Character.MIN_RADIX:"+Character.MIN_RADIX);
}
}
The code above generates the following result.