Explore Intl.DateTimeFormat — format dates with styles, individual components, calendars, and compare across locales.
const date = new Date("2026-07-29T04:17:00.000Z");
const formatter = new Intl.DateTimeFormat("en-US", {
"timeZone": "UTC",
"dateStyle": "full",
"timeStyle": "medium"
});
console.log(formatter.format(date));| Locale | Result |
|---|---|
| en-USEnglish (US) | Wednesday, July 29, 2026 at 4:17:00 AM |
| de-DEGerman (Germany) | Mittwoch, 29. Juli 2026 um 04:17:00 |
| fr-FRFrench (France) | mercredi 29 juillet 2026 à 04:17:00 |
| ja-JPJapanese (Japan) | 2026年7月29日水曜日 4:17:00 |
| ar-SAArabic (Saudi Arabia) | الأربعاء، ٢٩ يوليو ٢٠٢٦ في ٤:١٧:٠٠ ص |
| hi-INHindi (India) | बुधवार, 29 जुलाई 2026 को 4:17:00 am बजे |
| vi-VNVietnamese (Vietnam) | lúc 04:17:00 Thứ Tư, 29 tháng 7, 2026 |
| ko-KRKorean (Korea) | 2026년 7월 29일 수요일 오전 4:17:00 |