What Is Today's Date?

Find out today's date in multiple formats, along with the day of the year, week number, and year progress. This page automatically updates to show the current date and time.

Loading...
Loading...
Loading...
-
Day of the Year
of 365 days
-
Week Number
of 52 weeks
-
Month of Year
of 12 months
-
Days Remaining
in the year

Today's Date in Different Formats

MM-DD-YYYY (US)
-
DD-MM-YYYY (EU)
-
YYYY-MM-DD (ISO)
-
MM/DD/YYYY
-
DD/MM/YYYY
-
Full Written
-

Year Progress

Year Progress 0%
Month Progress 0%
Week Progress 0%

2026 Calendar

Understanding Date Formats Around the World

Dates are written differently around the world, which can sometimes lead to confusion. Understanding these formats is essential for international communication, travel, and business.

Common Date Formats Explained

There are three main components in any date: the day (D), month (M), and year (Y). Different countries arrange these components in different orders:

Format Example Regions Using This Format
MM-DD-YYYY 02-15-2026 United States, Philippines
DD-MM-YYYY 15-02-2026 Most of Europe, South America, Asia, Australia
YYYY-MM-DD 2026-02-15 ISO standard, East Asia (China, Japan, Korea), Canada

The ISO 8601 Standard

The ISO 8601 format (YYYY-MM-DD) is an international standard designed to eliminate confusion when dates are exchanged between countries. This format has several advantages:

  • Unambiguous: Unlike 03-04-2026, which could mean March 4th or April 3rd depending on the country, 2026-03-04 can only mean March 4th, 2026.
  • Sortable: Dates in this format sort correctly in alphabetical/numerical order, making it ideal for file names and databases.
  • International Recognition: This format is understood worldwide and is the standard for scientific, computing, and international business applications.

Pro Tip: When in doubt about which date format to use, especially in international communications, use the ISO 8601 format (YYYY-MM-DD) or write out the month name (e.g., "15 February 2026") to avoid any confusion.

Why Date Confusion Happens

Consider the date written as 03/04/2026. In the United States, this would be read as March 4th, 2026. However, in most other countries, this same notation would be interpreted as April 3rd, 2026. This ambiguity can cause significant problems in:

  • International business contracts and deadlines
  • Travel bookings and itineraries
  • Medical records and appointments
  • Legal documents
  • Financial transactions

Getting Today's Date in Spreadsheets

If you're working in Microsoft Excel or Google Sheets, you can easily get today's date using a simple formula:

=TODAY()

This function returns the current date and automatically updates whenever the spreadsheet is opened or recalculated. You can format the result to display in any date format you prefer using the cell formatting options.

For more control, you can use these additional date functions:

=NOW() Returns current date AND time =YEAR(TODAY()) Returns just the year (e.g., 2026) =MONTH(TODAY()) Returns the month number (1-12) =DAY(TODAY()) Returns the day of the month (1-31) =WEEKDAY(TODAY()) Returns the day of the week (1-7)

Day of the Year Calculation

The day of the year (also called the ordinal date or Julian day) tells you which day number it is out of the 365 or 366 days in a year. This is particularly useful for:

  • Project planning and scheduling
  • Tracking progress toward annual goals
  • Agricultural and seasonal planning
  • Scientific data recording

To calculate the day of the year manually, add up all the days in the previous months plus the current day of the month. Remember to account for February having 29 days in leap years!

Week Numbers

Week numbers provide a standardized way to refer to specific weeks within a year. According to the ISO week date system:

  • Weeks start on Monday
  • Week 1 is the week containing the first Thursday of the year
  • A year can have 52 or 53 weeks

Week numbers are commonly used in business for scheduling, manufacturing timelines, and project management. They're particularly popular in European countries for planning purposes.

Leap Years

A leap year occurs every 4 years to keep our calendar synchronized with Earth's orbit around the Sun. In a leap year, February has 29 days instead of 28, making the year 366 days long instead of 365.

The rules for determining leap years are:

  1. If the year is divisible by 4, it's a leap year
  2. However, if it's divisible by 100, it's NOT a leap year
  3. Unless it's also divisible by 400, then it IS a leap year

For example: 2024 was a leap year, 2025 is not, 2028 will be a leap year, and 2100 will NOT be a leap year despite being divisible by 4.