Date Format in India
à¤à¤¾à¤°à¤¤
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