Indiaの日付フォーマット

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

Indiaで使用される日付フォーマット

DD/MM/YYYY

例: 31/12/2025

その他の使用フォーマット:

DD/MM/YYYY DD-MM-YYYY

India形式での今日の日付

31/12/2026

フォーマットの詳細

主要フォーマット DD/MM/YYYY
区切り文字 /
ロケールコード en-IN
カレンダーシステム Gregorian (also Saka calendar)

コードでIndiaの日付をフォーマット

JavaScript
const date = new Date(); // India用のフォーマット const formatted = date.toLocaleDateString('en-IN'); console.log(formatted); // 31/12/2026
Python
from datetime import datetime import locale # India用のフォーマット locale.setlocale(locale.LC_TIME, 'en_IN') date = datetime.now() formatted = date.strftime('%d/%m/%Y') print(formatted) # 31/12/2026

他の国

DD/MM/YYYYを使用している国

関連ページ