Today's Date & Time
Live date and time in multiple formatsupdated every second.
Current Time
--:--:--
Loading...
Date Formats
Calendar Information
Day of Year
—
Days Remaining
—
Week Number (ISO)
—
Quarter
—
Leap Year
—
Day of Week
—
Moon Phase (Approximate)
🌑
—
—
Related Tools
The Many Ways We Refer to Today
The word "today" comes from the Old English tōdæġeliterally meaning "on this day." It is one of the oldest and most fundamental words in any languageand nearly every culture has developed its own rich vocabulary for locating a moment in time relative to the present. English alone offers dozens of ways to say "today" without ever using the word: this morningthis afternoonthe present dayas we speakat this pointright now.
Other languages go further. Japanese distinguishes kyō (今日today) from honjitsu (本日)a more formal variant used in announcementsnewsand official documents — two words for the same dayseparated by social register. Italian has oggi and the literary oggigiorno (nowadays)while in Hindiāj (आज) serves for both "today" and "nowadays," collapsing the present moment and the present era into a single syllable.
YesterdayTodayTomorrow — and the Words Between
English has names for yesterday and tomorrowbut many languages extend the system much further. Japanese has dedicated single words for the day before yesterday (ototoi) and the day after tomorrow (asatte)and even a word for three days from now (shiasatte). German mirrors this with vorgestern (day before yesterday) and übermorgen (day after tomorrow). Georgian pushes it to four days out with zeg (day after tomorrow) and mazeg (the day after that).
These words reveal something about how cultures experience time. Languages that compress several days into single words tend to treat the near future and near past as a continuousaccessible zone — not a distant abstraction but something close enough to name in one breath. English speakersby contrastmust construct phrases: "the day before yesterday" is four words where German needs one.
How Computers Understand "Today"
For humans"today" is intuitive. For computersit is surprisingly complicated. At its corea computer does not know what "today" is — it only knows how many seconds have elapsed since January 11970 (the Unix epoch). Every time software displays "today's date," it is performing a chain of calculations: reading a timestampapplying a time zone offsetconverting to a calendar dateand formatting it for human eyes.
The concept of "today" also creates real problems in software. A function that checks whether a payment is due today will produce different results depending on the server's time zone. A user in Tokyo and a user in New York experience different "todays" at the same real-world instant. This is why many systems store dates in UTC and convert only at the display layer — a compromise that keeps machines in agreement even when humans disagree about what day it is.
Spreadsheet software like Excel and Google Sheets expose this directly with the TODAY() functionwhich returns the current date and automatically recalculates when the file is reopened. Databases use CURRENT_DATE or NOW(). JavaScript uses new Date(). Each is a different way of asking the same ancient question: what day is it?
Today in History: Why We Care About This Specific Date
Humans have an enduring fascination with the date itself. "On this day" columns have appeared in newspapers since the 19th centuryand their digital descendants now populate Wikipedia sidebarspodcast introsand morning news segments. The appeal is not just trivia — it is a way of anchoring the present moment in a longer storyof feeling that today is not empty but connected to a web of events that came before.
This instinct runs deep. The ancient Romans kept a detailed calendar of dies fasti (days on which official business could be conducted) and dies nefasti (days on which it could not)effectively giving every date a personality. Medieval Christian calendars assigned a patron saint to each day of the year. Even todayyou can look up any date and find a national holiday somewhere in the worlda historical anniversaryor an unofficial observance like "National Coffee Day." The date is never truly blank.
Frequently Asked Questions
What time zone does this page use?
All times and dates on this page are displayed in your local time zoneas detected by your browser. The time zone name is shown beneath the clock. If you need to see today's date in a different time zoneuse our Time Zone Converter.
How accurate is the moon phase?
The moon phase calculation uses an approximation based on the synodic month (29.53 days). It is accurate enough to identify the current phase — new moonfirst quarterfull moonlast quarterand the crescents and gibbous phases between them — but may differ from astronomical sources by up to a day for exact phase transitions.
What is the Julian Day Number?
The Julian Day Number (JDN) is a continuous count of days since the beginning of the Julian Period on January 14713 BC. It is widely used in astronomy and historical research because it avoids the complications of different calendar systems. It is not related to the Julian calendar despite sharing a name — both are named after different people (Joseph Scaliger's father Juliusand Julius Caesarrespectively).
Why does the day of year matter?
The day of year (also called the ordinal date) tells you where you stand in the current year — for exampleday 117 of 365. It is used in agricultureproject managementmanufacturingand military contexts. Combined with the "days remaining" countit gives you a quick sense of how much of the year has passed and how much is left.