DateTime.ToString()

wassupy.com

shorthand format strings

dates

d 4/5/2026
D Sunday, April 5, 2026
m April 5
M April 5
y April 2026
Y April 2026

times

t 2:39 PM
T 2:39:07 PM

combos

f Sunday, April 5, 2026 2:39 PM
F Sunday, April 5, 2026 2:39:07 PM
g 4/5/2026 2:39 PM
G 4/5/2026 2:39:07 PM
o 2026-04-05T14:39:07.8932984
r Sun, 05 Apr 2026 14:39:07 GMT
s 2026-04-05T14:39:07
u 2026-04-05 14:39:07Z
U Sunday, April 5, 2026 2:39:07 PM

custom date bits

era

%g AD
gg AD

year

yyyyy 02026
yyyy 2026
yyyy 2026
yy 26
y April 2026

month

MMMM April
MMM Apr
MM 04
%M 4

day

dddd Sunday
ddd Sun
dd 05
%d 5

custom time bits

hour

HH 14
%H 14
hh 02
%h 2

minute

mm 39
%m 39

second

ss 07
%s 7

subsecond

%f 8
ff 89
fff 893
ffff 8939
fffff 89396
ffffff 893962
fffffff 8939623

miscellaneous bits

date separator

%/ /

time separator

%: :

AM/PM

%t P
tt PM

time zone1

%K
%z +0
zz +00
zzz +00:00

Pitfalls and traps

General advice

Dates, times, and time zones are tricky. In .NET, there are subtle differences that can be challenging to spot. My general advice is:

Other gotchas

TimeZoneInfo.ConvertTime(...) returns a DateTime with Kind = Unspecified. For example:

DateTime dt = DateTime.UtcNow;
// dt.ToString("o") -> 2026-04-05T18:39:07.8939814Z
// dt.Kind -> Utc

TimeZoneInfo tz = TimeZoneInfo.FindSystemTimeZoneById("America/Chicago");
var sf = TimeZoneInfo.ConvertTime(d, tz);
// sf.ToString("o") -> 2026-04-05T13:39:07.8939814
// sf.Kind -> Unspecified

Note that the Unspecified time lacks a time zone offset in the output. You might be tempted to set its Kind to Local, but this is usually not a good idea:

// don't do this
var sfLocal = DateTime.SpecifyKind(sf, DateTimeKind.Local);
sfLocal.ToString("o") -> 2026-04-05T13:39:07.8939814+00:00

The time is correct, but the time zone offset is not. Chicago is -05:00, not +00:00. "Local" in this context is the server's time zone (-00:00).

1That undesired time zone also shows up in the related format strings %K, %z, zz, and zzz above. Again, these show the time zone of the server, not the time zone the value was converted to. Luckily, DateTimeOffset handles this better:

var dto = DateTimeOffset.UtcNow;
var chicagoDto = TimeZoneInfo.ConvertTime(dto, tz);
// dto.ToString("zzz")        --> +00:00
// chicagoDto.ToString("zzz") --> -05:00

Other surprising things

The Ticks property is not agnostic of time zones/kind:

DateTime utc = DateTime.UtcNow;
DateTime local = utc.ToLocalTime(); // don't do this
DateTime unspecified = TimeZoneInfo.ConvertTime(utc, tz);

// utc.Ticks         --> 639110111478940778
// local.Ticks       --> 639110111478940778
// unspecified.Ticks --> 639109931478940778

I guess it makes sense that Ticks would vary here, but I personally would have guessed that it was always in UTC, sort of like Javascript's getTime.

And DateTimeOffset works in the same spirit by factoring in the offset:

// these are the same for DateTimeOffset, but not DateTime
// dto.Ticks        --> 639110111478940680
// chicagoDto.Ticks --> 639109931478940680
//
// and the difference is the same as the time zone offset ✔️:
// (chicagoDto.Ticks - dto.Ticks) / TimeSpan.TicksPerHour --> -5