Date & Time Samples
Collection of date and time strings in various formats for validation testing
Key Facts
- Category
- Validation
- Items
- 1
- Format Families
- text
Sample Overview
Collection of date and time strings in various formats for validation testing This sample set belongs to Validation and can be used to test related workflows inside Elysia Tools.
📝 Common Date & Time Formats
🟢 simple
A list of date and time strings in standard formats including ISO8601, RFC2822, and Unix Timestamps
# Date & Time Samples
# Copy one of these lines to test the Date & Time Validator
# --- ISO 8601 Formats ---
# Complete Date & Time (UTC)
2025-12-23T14:30:00Z
# Date & Time with Offset
2025-12-23T14:30:00+08:00
# Date & Time with Milliseconds
2025-12-23T14:30:00.123Z
# Basic Format (No separators)
20251223T143000Z
# --- Date Only (ISO 8601) ---
# Standard Format
2025-12-23
# Basic Format
20251223
# Week Date Format (YYYY-Www-D)
2025-W52-2
# Ordinal Date Format (YYYY-DDD)
2025-357
# --- Time Only (ISO 8601) ---
# Standard Format
14:30:00
# With Milliseconds
14:30:00.123
# With Offset
14:30:00+08:00
# Basic Format
143000
# --- Unix Timestamps ---
# Seconds (Current approx.)
1766500200
# Milliseconds
1766500200000
# Negative (Before 1970)
-14182940
# --- RFC 2822 / Email Format ---
# Standard
Tue, 23 Dec 2025 14:30:00 +0000
# Without Day of Week
23 Dec 2025 14:30:00 +0000
# With Zone Name (Obsolete but seen)
Tue, 23 Dec 2025 14:30:00 GMT
# --- Common Local Formats ---
# US Format (MM/DD/YYYY)
12/23/2025
# US Format with Time
12/23/2025 2:30 PM
# EU Format (DD.MM.YYYY)
23.12.2025
# EU Format with Time
23.12.2025 14:30
# Asian Format (YYYY/MM/DD)
2025/12/23