Java Data Type Tutorial - 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 {

  public static void main(String[] args) {
    System.out.println("Character.MIN_RADIX:"+Character.MIN_RADIX);
  }
}

The code above generates the following result.