รูปแบบวันที่ในIndia
भारत
รูปแบบวันที่ที่ใช้ในIndia
DD/MM/YYYY
ตัวอย่าง: 31/12/2025
รูปแบบอื่นที่ใช้:
DD/MM/YYYY
DD-MM-YYYY
วันนี้ในรูปแบบIndia
31/12/2026
รายละเอียดรูปแบบ
| รูปแบบหลัก | DD/MM/YYYY |
| ตัวคั่น | / |
| รหัสภาษา | en-IN |
| ระบบปฏิทิน | Gregorian (also Saka calendar) |
จัดรูปแบบวันที่สำหรับIndiaในโค้ด
JavaScript
const date = new Date();
// รูปแบบสำหรับIndia
const formatted = date.toLocaleDateString('en-IN');
console.log(formatted); // 31/12/2026
Python
from datetime import datetime
import locale
# รูปแบบสำหรับIndia
locale.setlocale(locale.LC_TIME, 'en_IN')
date = datetime.now()
formatted = date.strftime('%d/%m/%Y')
print(formatted) # 31/12/2026