Explore Intl.DateTimeFormat — format dates with styles, individual components, calendars, and compare across locales.
const date = new Date("2026-06-25T08:05: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) | Thursday, June 25, 2026 at 8:05:00 AM |
| de-DEGerman (Germany) | Donnerstag, 25. Juni 2026 um 08:05:00 |
| fr-FRFrench (France) | jeudi 25 juin 2026 à 08:05:00 |
| ja-JPJapanese (Japan) | 2026年6月25日木曜日 8:05:00 |
| ar-SAArabic (Saudi Arabia) | الخميس، ٢٥ يونيو ٢٠٢٦ في ٨:٠٥:٠٠ ص |
| hi-INHindi (India) | गुरुवार, 25 जून 2026 को 8:05:00 am बजे |
| vi-VNVietnamese (Vietnam) | lúc 08:05:00 Thứ Năm, 25 tháng 6, 2026 |
| ko-KRKorean (Korea) | 2026년 6월 25일 목요일 오전 8:05:00 |