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