รูปแบบวันที่ในFrance

France
DD/MM/YYYY

รูปแบบวันที่ที่ใช้ในFrance

DD/MM/YYYY

ตัวอย่าง: 31/12/2025

รูปแบบอื่นที่ใช้:

DD/MM/YYYY DD mois YYYY

วันนี้ในรูปแบบFrance

31/12/2026

รายละเอียดรูปแบบ

รูปแบบหลัก DD/MM/YYYY
ตัวคั่น /
รหัสภาษา fr-FR
ระบบปฏิทิน Gregorian

จัดรูปแบบวันที่สำหรับFranceในโค้ด

JavaScript
const date = new Date(); // รูปแบบสำหรับFrance const formatted = date.toLocaleDateString('fr-FR'); console.log(formatted); // 31/12/2026
Python
from datetime import datetime import locale # รูปแบบสำหรับFrance locale.setlocale(locale.LC_TIME, 'fr_FR') date = datetime.now() formatted = date.strftime('%d/%m/%Y') print(formatted) # 31/12/2026

ประเทศอื่นๆ

ประเทศที่ใช้ DD/MM/YYYY

หน้าที่เกี่ยวข้อง