Germany માં તારીખ ફોર્મેટ
Deutschland
Germany માં વપરાતો તારીખ ફોર્મેટ
DD.MM.YYYY
ઉદાહરણ: 31.12.2025
Germany માં આજની તારીખ
31.12.2026
ફોર્મેટ વિગતો
| મુખ્ય ફોર્મેટ | DD.MM.YYYY |
| વિભાજક | . |
| લોકેલ કોડ | de-DE |
| કેલેન્ડર સિસ્ટમ | Gregorian |
નોંધ: Uses period as separator
કોડમાં Germany માટે તારીખ ફોર્મેટ
JavaScript
const date = new Date();
// Germany માટે ફોર્મેટ
const formatted = date.toLocaleDateString('de-DE');
console.log(formatted); // 31.12.2026
Python
from datetime import datetime
import locale
# Germany માટે ફોર્મેટ
locale.setlocale(locale.LC_TIME, 'de_DE')
date = datetime.now()
formatted = date.strftime('%d.%m.%Y')
print(formatted) # 31.12.2026