Date Format in Thailand
ประเทศไทย
Date Format Used in Thailand
DD/MM/YYYY
Example: 31/12/2568
Other formats also used:
DD/MM/YYYY
DD/MM/BE (Buddhist Era)
Today's Date in Thailand Format
31/12/2568
Format Details
| Primary Format | DD/MM/YYYY |
| Separator | / |
| Locale Code | th-TH |
| Calendar System | Buddhist Era (BE = CE + 543) |
Note: Thailand uses Buddhist Era calendar, add 543 to Gregorian year
Format Dates for Thailand in Code
JavaScript
const date = new Date();
// Format for Thailand
const formatted = date.toLocaleDateString('th-TH');
console.log(formatted); // 31/12/2568
Python
from datetime import datetime
import locale
# Set locale for Thailand
locale.setlocale(locale.LC_TIME, 'th_TH')
date = datetime.now()
formatted = date.strftime('%d/%m/%Y')
print(formatted) # 31/12/2568