Current UTC date and time: utcnow

The utcnow template function returns the current date and time in UTC (Coordinated Universal Time). It gives you a full datetimeA value representing a specific moment in time, including the date, time, and time zone. For example, 2026-04-05 14:30:00+00:00. Used for timestamps, scheduling, and time-based calculations. object representing the present moment in the UTC time zone, regardless of your local time zone setting.

When you need to compare times across time zones, store timestamps in a universal format, or perform calculations that should not be affected by daylight saving time changes, utcnow() is the right choice. It is also useful when interacting with external services that expect UTC timestamps. Like now, using utcnow() in a template causes it to be re-evaluated at the start of every new minute, keeping time-dependent values up to date automatically.

Usage

Here’s how to use this template function. Copy any example and adjust it to your setup.

As a function
{{ utcnow() }}
Result (datetimeA value representing a specific moment in time, including the date, time, and time zone. For example, 2026-04-05 14:30:00+00:00. Used for timestamps, scheduling, and time-based calculations.)
2024-03-15 13:30:00.123456+00:00

Function signature

The signature is a technical summary of this template function. It shows the name of the function, the values (called parameters) it accepts, and what type of data each parameter expects (for example, a piece of text or a number).

Function parameters that have a = with a value after them are optional. If you leave them out, the default value shown is used automatically. Function parameters without a default are required.

utcnow() -> datetime

Working with the result

utcnow() returns a datetimeA value representing a specific moment in time, including the date, time, and time zone. For example, 2026-04-05 14:30:00+00:00. Used for timestamps, scheduling, and time-based calculations. object. You can access individual components and format the output, just like with now.

TemplateA template is an automation definition that can include variables for the action or data from the trigger values. This allows automations to generate dynamic actions. [Learn more]
The UTC time is {{ utcnow().hour }}:{{ utcnow().minute }}
Today is day {{ utcnow().day }} of month {{ utcnow().month }}
Result (stringA piece of text, like a name, message, or entity ID. In templates, wrap strings in quotes, like "living_room" or "lights are on".)
The UTC time is 13:30
Today is day 15 of month 3

Formatting with strftime

You can format the date and time in any way you like using Python’s strftime method.

TemplateA template is an automation definition that can include variables for the action or data from the trigger values. This allows automations to generate dynamic actions. [Learn more]
{{ utcnow().strftime("%Y-%m-%dT%H:%M:%SZ") }}
Result (stringA piece of text, like a name, message, or entity ID. In templates, wrap strings in quotes, like "living_room" or "lights are on".)
2024-03-15T13:30:00Z

Good to know

  • Templates that reference utcnow() are re-evaluated at the start of every minute, the same as now.
  • The returned datetime is time zone aware and always in UTC, so adding a timedelta or subtracting from a local datetime works without conversion.

Try it yourself

Ready to test this? Open Developer tools > Template, paste the example into the Template editor, and watch the result update on the right. Edit the values to see how the function adapts to your own entitiesAn entity represents a sensor, actor, or function in Home Assistant. Entities are used to monitor physical properties or to control other entities. An entity is usually part of a device or a service. [Learn more].

More examples

Real scenarios where this function comes up in automations and templates. Copy any example and adapt it to your setup.

Calculate the UTC offset

Compare now with utcnow() to determine your current UTC offset in hours.

TemplateA template is an automation definition that can include variables for the action or data from the trigger values. This allows automations to generate dynamic actions. [Learn more]
{{ ((now() - utcnow()).total_seconds() / 3600) | round(0) | int }}
Result (integerA whole number without decimal places, like 1, 42, or -5. Used for counts, indices, and whole values.)
1

ISO 8601 formatted UTC timestamp

Create a standard ISO 8601 timestamp string, useful for logging or sending to external APIs.

TemplateA template is an automation definition that can include variables for the action or data from the trigger values. This allows automations to generate dynamic actions. [Learn more]
{{ utcnow().isoformat() }}
Result (stringA piece of text, like a name, message, or entity ID. In templates, wrap strings in quotes, like "living_room" or "lights are on".)
2024-03-15T13:30:00.123456+00:00

Still stuck?

The Home Assistant community is quick to help: join Discord for real-time chat, post on the community forum with your template and expected result, or share on our subreddit /r/homeassistant.

Tip

AI assistants like ChatGPT or Claude can also explain or fix templates when you describe what you want in plain language.

Related template functions

These functions work well alongside this one: