Date Format in India

भारत
DD/MM/YYYY Gregorian (also Saka calendar)

Date Format Used in India

DD/MM/YYYY

Example: 31/12/2025

Other formats also used:

DD/MM/YYYY DD-MM-YYYY

Today's Date in India Format

31/12/2026

Format Details

Primary Format DD/MM/YYYY
Separator /
Locale Code en-IN
Calendar System Gregorian (also Saka calendar)

Format Dates for India in Code

JavaScript
const date = new Date(); // Format for India const formatted = date.toLocaleDateString('en-IN'); console.log(formatted); // 31/12/2026
Python
from datetime import datetime import locale # Set locale for India locale.setlocale(locale.LC_TIME, 'en_IN') date = datetime.now() formatted = date.strftime('%d/%m/%Y') print(formatted) # 31/12/2026

Date Formats in Other Countries

Countries Using DD/MM/YYYY

Related Pages