Philippines හි දින ආකෘතිය
Pilipinas
Philippines හි භාවිතා වන දින ආකෘතිය
MM/DD/YYYY
උදාහරණය: 12/31/2025
භාවිතා කරන වෙනත් ආකෘති:
MM/DD/YYYY
Month DD, YYYY
Philippines හි අද දිනය
12/31/2026
ආකෘති විස්තර
| ප්රාථමික ආකෘතිය | MM/DD/YYYY |
| වෙන්කරන්නා | / |
| ප්රදේශ කේතය | en-PH |
| දින දර්ශන පද්ධතිය | Gregorian |
සටහන: Uses American format due to historical US influence
කේතයේ Philippines සඳහා දින ආකෘතිය
JavaScript
const date = new Date();
// Philippines සඳහා ආකෘතිය
const formatted = date.toLocaleDateString('en-PH');
console.log(formatted); // 12/31/2026
Python
from datetime import datetime
import locale
# Philippines සඳහා ආකෘතිය
locale.setlocale(locale.LC_TIME, 'en_PH')
date = datetime.now()
formatted = date.strftime('%m/%d/%Y')
print(formatted) # 12/31/2026