Systemd, BIOS & Filesystem Timestamp Converter

OS-level timestamps come in many dialects: systemd journal (µs since epoch), BIOS RTC (packed BCD), DOS FAT (2-second granularity), Mac HFS (seconds since 1904), POSIX touch (`yyyymmddhhmm.ss`), and Git commit (`Tue Aug 13 14:30:00 2026 +0000`).

This converter renders your date-time in each system format for forensic analysis, filesystem development and Linux scripting.

Timezone:
Enter a date-time above to see the conversion results.

Systemd, BIOS & Filesystem Timestamp Converter Quick Reference

FormatPattern / DescriptionExample 1Example 2
Systemd JournalMicroseconds17866314000000001767225600000000
BIOS Time (BCD)CMOS Hex0x14300x0000
RTC Packed BCDHardware Clock0x2608131430000x260101000000
DOS / FAT DateHex encoded 16-bitDATE=0x5D0D TIME=0xB3C0DATE=0x5C21 TIME=0x4000
DOS FAT Date (Hex)Hex EncodedDATE=0x5D0D TIME=0xB3C0DATE=0x5C21 TIME=0x4000
Mac HFS+ / CFAbsoluteTimeSeconds since 200138694762003850070400
POSIX touchYYYYMMDDhhmm.ss202608131430.00202601010000.00
Git Commit Dategit log formatThu Aug 13 14:30:00 2026 +0000Thu Jan 01 00:00:00 2026 +0000
Ansible date_timeyyyy-MM-dd_HH-mm-ss2026-08-13_14-30-002026-01-01_00-00-00

* Examples are rendered in UTC for the fixed sample instants above.

When to Use Systemd, BIOS & Filesystem Timestamp

Forensic timestamp analysis

Decode FAT/HFS file times from disk images when correlating file activity with system logs.

Linux scripting

Generate `touch -t` arguments and verify `stat` output formats for shell scripts.

Git history debugging

Compare commit timestamps (author vs committer) and their exact string form for tooling tests.

Frequently Asked Questions

What is the systemd journal timestamp format?

Microseconds since epoch (e.g. `1786624200000000`), with µs resolution — the `_SOURCE_REALTIME_TIMESTAMP` field.

What is the DOS FAT timestamp format?

A 16-bit date + 16-bit time with 2-second granularity (bits: 7 year, 4 month, 5 day; 5 hour, 6 min, 5 sec/2).

What is the Mac HFS timestamp?

Seconds since 1904-01-01 00:00:00 (the Mac epoch), stored as unsigned 32-bit — it wraps in 2040.

What is the POSIX touch format?

`[[CC]YY]MMDDhhmm[.ss]` — e.g. `2608131430.00` for 2026-08-13 14:30. Also accepts `@epoch` seconds.

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