UTC, Unix Time & ISO 8601 Tools

Essential time formats for developers and APIs

Current Time Formats

UTC Time

03:28:48

Coordinated Universal Time (UTC) - The primary time standard

Unix Timestamp

1779334128

Seconds since January 1, 1970 00:00:00 UTC

ISO 8601

2026-05-21T03:28:48.276Z

International standard for date and time representation

Your Timezone

UTC

IANA 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()