Glossary term

Coordinated Universal Time (UTC)

What is UTC?

UTC, or Coordinated Universal Time, is the global time standard used to synchronize operations across time zones, critical for keeping networked applications and services consistent across multiple servers worldwide.

UTC succeeded Greenwich Mean Time (GMT) and gives developers a universal reference point that isn't affected by daylight saving time adjustments.

How is UTC used?

This standardization is especially valuable for multiplayer applications and distributed systems that need precise timing coordination across geographic boundaries, the kind of synchronization Unity's own multiplayer solutions are built to handle.

For time-sensitive features like scheduled events, server maintenance windows, or transaction timestamps, UTC offers a reliable foundation that prevents confusion or desynchronization issues. Development platforms typically provide built-in functions to convert between local time zones and UTC, so an application can display a user-friendly local time to each player while keeping one consistent internal time reference for all system operations and data records.

Want to go deeper on multiplayer time sync specifically? Unity's Ultimate Advanced Multiplayer Networking Guide covers networking models and synchronization patterns in more depth.