Datumsformat in Thailand
ประเทศไทย
In Thailand verwendetes Datumsformat
DD/MM/YYYY
Beispiel: 31/12/2568
Andere verwendete Formate:
DD/MM/YYYY
DD/MM/BE (Buddhist Era)
Heutiges Datum in Thailand
31/12/2568
Formatdetails
| Hauptformat | DD/MM/YYYY |
| Trennzeichen | / |
| Gebietsschema-Code | th-TH |
| Kalendersystem | Buddhist Era (BE = CE + 543) |
Hinweis: Thailand uses Buddhist Era calendar, add 543 to Gregorian year
Daten für Thailand im Code formatieren
JavaScript
const date = new Date();
// Format für Thailand
const formatted = date.toLocaleDateString('th-TH');
console.log(formatted); // 31/12/2568
Python
from datetime import datetime
import locale
# Format für Thailand
locale.setlocale(locale.LC_TIME, 'th_TH')
date = datetime.now()
formatted = date.strftime('%d/%m/%Y')
print(formatted) # 31/12/2568