Saturday, October 25, 2025
HomeLanguagesJavaDecimalStyle getZeroDigit() method in Java with Example

DecimalStyle getZeroDigit() method in Java with Example

The getZeroDigit() method of java.time.format.DecimalStyle class in Java is used to get the character that is used to represent zero for the Locale of this DecimalStyle. This method returns the character for zero of that Locale.

Syntax:

public char getZeroDigit()

Parameter: This method do not accept any parameter.

Return Value: This method returns a character which represents the zero of this DecimalStyle.

Exception: This method do not throw any Exception.

Program:




// Java program to demonstrate
// the above method
  
import java.time.format.*;
import java.util.*;
  
public class DecimalStyleDemo {
    public static void main(String[] args)
    {
  
        DecimalStyle ds
            = DecimalStyle.STANDARD;
  
        System.out.println("Character used"
                           + " for zero: "
                           + ds.getZeroDigit());
    }
}


Output:

Character used for zero: 0

Reference: https://docs.oracle.com/javase/10/docs/api/java/time/format/DecimalStyle.html#getZeroDigit()

RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS