NowUTC Reference

Overview

Browser-based UTC clock widget. No account, no tracking, localStorage only.

URL Parameters

ParamValuesDescription
?tz=Abbreviation or IANA nameLock to a specific timezone (e.g. CST, America/Chicago)
?until=HH:MM or ISO datetimeCountdown timer to a UTC time (18:00) or date (2026-03-15T18:00Z)
?view=widget | desktopForce a specific view mode (overrides auto-detection by viewport width)
?embed=11Embed mode -- hides footer, settings gear, and widget link
?shared=11Import shared config from URL. Combine with params below:
&bg=Hex (no #)Background color (001F3F)
&text=Hex (no #)Text color (7FDBFF)
&favs=Comma-separated IANAFavorite timezones
&fmt=12h | 24hSecondary timezone time format
&sec=0 | 1Show seconds on UTC clock
&w=200-1200Widget popup width (px)
&h=100-800Widget popup height (px)

Keyboard Shortcuts

KeyAction
Cycle through favorite timezones
CCopy UTC timestamp (opens format tray)
ECopy epoch (Unix seconds)
POpen/close timestamp converter
?Toggle keyboard shortcut overlay
EscClose overlays (shortcut help, converter, format tray)

Copy Formats

Click the UTC time to open the format tray. Click any row to copy.

FormatExample
ISO 86012026-03-01T14:30:07Z
Unix (s)1772201407
Unix (ms)1772201407000
RFC 2822Sun, 01 Mar 2026 14:30:07 +0000
SQL2026-03-01 14:30:07
HumanMarch 1, 2026 at 2:30:07 PM UTC

Timestamp Converter

Press P or click the paste icon next to the epoch display.

AcceptsExample
Unix seconds (10 digits)1772201407
Unix milliseconds (13 digits)1772201407000
ISO 86012026-03-01T14:30:07Z
RFC 2822Sun, 01 Mar 2026 14:30:07 +0000
Any Date.parse()-compatible stringMarch 1, 2026

Output includes all 6 copy formats plus local time and relative time.

localStorage Schema

{
  "version": 3,
  "defaultTz": "browser",       // "browser" | "last"
  "lastUsedTz": "",             // IANA timezone string
  "favorites": [],              // IANA timezone strings
  "colors": {
    "bg": "#000000",            // background hex
    "text": "#FFFFFF"           // text hex
  },
  "widgetSize": {
    "width": 400,               // popup width (px)
    "height": 250               // popup height (px)
  },
  "timeFormat": "12h",          // "12h" | "24h"
  "showSeconds": false,         // HH:MM vs HH:MM:SS
  "wizardComplete": false,      // first-time wizard completed
  "tiles": []                   // desktop tile defs [{ tz, label, color }]
}

Key: nowutc_prefs

Desktop View

On viewports 900px and wider, NowUTC automatically switches to a tile grid showing UTC as a large primary tile plus one tile per favorite timezone. Use ?view=widget or ?view=desktop to override auto-detection. A toggle button in the bottom bar switches between views manually.

ConditionView
?embed=1 or popup windowAlways widget
?view=widget or ?view=desktopURL override
Viewport >= 900pxDesktop (auto)
Viewport < 900pxWidget (auto)

Embed Mode

Add ?embed=1 to hide all chrome. Generate a snippet from Settings > Embed.

<iframe src="https://nowutc.com/?embed=1"
  width="300" height="200"
  frameborder="0" title="NowUTC Clock"></iframe>

Settings Import/Export

ActionDescription
ExportDownloads nowutc-settings.json with full preferences
ImportUpload a JSON file to restore settings, then reloads
ResetClears localStorage and reloads with defaults

PWA / Offline

Service worker uses network-first for HTML, cache-first for hashed assets. Install from your browser's address bar or menu for offline access and a native app feel.

Timezone Abbreviation Map

AbbreviationIANA Zone
UTC, GMTUTC
EST, EDTAmerica/New_York
CST, CDTAmerica/Chicago
MST, MDTAmerica/Denver
PST, PDTAmerica/Los_Angeles
AKST, AKDTAmerica/Anchorage
HSTPacific/Honolulu
BSTEurope/London
CET, CESTEurope/Berlin
EET, EESTEurope/Bucharest
ISTAsia/Kolkata
JSTAsia/Tokyo
KSTAsia/Seoul
AEST, AEDTAustralia/Sydney
NZST, NZDTPacific/Auckland

About

Built by RJ Lindelof.

I kept googling "what is the UTC time" and bookmarking conversion pages. AWS dashboards were the worst -- some reports used my local timezone, others used the region's timezone (us-east-2), and some just said "UTC" with no context. I needed one small tool that stayed out of the way, showed UTC at a glance, and let me quickly convert between formats without hunting through tabs. So I built it.

Open Clock Settings Back