IoT Protocol Timestamp Converter
IoT protocols embed time compactly: CoAP (seconds since 2000), LoRaWAN (UTC seconds), Zigbee (UTC with 0.1s resolution), UEFI (100ns since 1601) and VxWorks (ticks). Devices across a fleet must agree on these scales for valid timestamps.
This converter renders your date-time in each IoT protocol representation for firmware development, packet building and sensor data analysis.
IoT Protocol Timestamp Converter Quick Reference
| Format | Pattern / Description | Example 1 | Example 2 |
|---|---|---|---|
| CoAP Option | RFC 7252 | 1786631400 | 1767225600 |
| LoRaWAN GPS | Device Time | 1470666600 | 1451260800 |
| Zigbee Time | Standard Time | 839946600 | 820540800 |
| UEFI Time | EFI_TIME | 2026-08-13 14:30:00 | 2026-01-01 00:00:00 |
| VxWorks System | Ticks since boot | 1786631400 | 1767225600 |
* Examples are rendered in UTC for the fixed sample instants above.
When to Use IoT Protocol Timestamp
Firmware development
Generate CoAP/LoRaWAN timestamp values for protocol unit tests and packet crafting.
Sensor fleet analysis
Convert raw Zigbee/CoAP timestamps from device payloads into wall-clock for data science.
Gateway integration
Build gateway logic that translates between protocol timestamps and UTC for cloud ingestion.
Frequently Asked Questions
What is the CoAP timestamp format?
32-bit unsigned seconds since 2000-01-01 (per RFC 7641/CoRE), wrapping in 2136. The converter outputs the integer.
What is the LoRaWAN timestamp format?
UTC seconds, commonly GPS-style (1980 epoch) or Unix (1970) depending on the network server; the converter renders the Unix form.
What is the Zigbee time format?
UTC with 0.1-second resolution since 2000-01-01, stored as 32-bit — a 0.1s tick count.
What is the UEFI time format?
100ns since 1601 (the same epoch as Windows FILETIME) — `EFI_TIME`/`EFI_TIME_CAPABILITIES` use this scale.
Related Time Format Converters
All Format Guides
Need to Convert Between All Formats?
Use the main Time Format Converter for instant conversion across 100+ formats — epoch, ISO 8601, RFC 3339, SQL datetime, military time and more in one click.
Open Time Format Converter