Format de Dată în Thailand
ประเทศไทย
Format de Dată Folosit în Thailand
DD/MM/YYYY
Exemplu: 31/12/2568
Alte formate folosite:
DD/MM/YYYY
DD/MM/BE (Buddhist Era)
Data de Astăzi în Thailand
31/12/2568
Detalii Format
| Format Principal | DD/MM/YYYY |
| Separator | / |
| Cod de Localizare | th-TH |
| Sistem de Calendar | Buddhist Era (BE = CE + 543) |
Notă: Thailand uses Buddhist Era calendar, add 543 to Gregorian year
Format de Dată pentru Thailand în Cod
JavaScript
const date = new Date();
// Format pentru Thailand
const formatted = date.toLocaleDateString('th-TH');
console.log(formatted); // 31/12/2568
Python
from datetime import datetime
import locale
# Format pentru Thailand
locale.setlocale(locale.LC_TIME, 'th_TH')
date = datetime.now()
formatted = date.strftime('%d/%m/%Y')
print(formatted) # 31/12/2568