CONVERTERS

Convert & Transform

Timestamps, base64, JSON — every encoder, decoder, and formatter developers actually reach for.

Encode · decode · format

Convert anything

All conversions run locally in your browser. Nothing leaves the page.

Advertisement
Background

Why everyone uses Unix epoch

A Unix timestamp is the number of seconds since midnight UTC on January 1, 1970. One scalar, no timezone surprises, no leap-second drama. Databases store it as an integer, APIs ship it as a number, and clients format it however they want — usually in the user's local timezone via Date() or equivalent.

epoch.js
const now = Math.floor(Date.now() / 1000)
// 1780334595
const human = new Date(now * 1000)
// 2026-06-01 17:23:15 UTC
2³¹ Y2038 limit (signed 32-bit)
UTC Always
1970 Unix epoch
0 Timezone bugs
Copied to clipboard