UTC, Unix Time & ISO 8601 Tools
Essential time formats for developers and APIs
Current Time Formats
UTC Time
03:28:48Coordinated Universal Time (UTC) - The primary time standard
Unix Timestamp
1779334128Seconds since January 1, 1970 00:00:00 UTC
ISO 8601
2026-05-21T03:28:48.276ZInternational standard for date and time representation
Your Timezone
UTCIANA timezone identifier
Unix Timestamp Converter
Code Examples
JavaScript
// Get current Unix timestamp
const timestamp = Math.floor(Date.now() / 1000);
// Convert Unix timestamp to Date
const date = new Date(timestamp * 1000);
// Get ISO 8601 string
const iso = new Date().toISOString();Python
import time
from datetime import datetime
# Get current Unix timestamp
timestamp = int(time.time())
# Convert Unix timestamp to datetime
dt = datetime.fromtimestamp(timestamp)
# Get ISO 8601 string
iso = datetime.now().isoformat()