DateTime.ToString()

wassupy.com

shorthand format strings

dates

d 8/12/2026
D Wednesday, August 12, 2026
m August 12
M August 12
y August 2026
Y August 2026

times

t 6:03 AM
T 6:03:43 AM

combos

f Wednesday, August 12, 2026 6:03 AM
F Wednesday, August 12, 2026 6:03:43 AM
g 8/12/2026 6:03 AM
G 8/12/2026 6:03:43 AM
o 2026-08-12T06:03:43.0812163
r Wed, 12 Aug 2026 06:03:43 GMT
s 2026-08-12T06:03:43
u 2026-08-12 06:03:43Z
U Wednesday, August 12, 2026 6:03:43 AM

custom date bits

era

%g AD
gg AD

year

yyyyy 02026
yyyy 2026
yyyy 2026
yy 26
y August 2026

month

MMMM August
MMM Aug
MM 08
%M 8

day

dddd Wednesday
ddd Wed
dd 12
%d 12

custom time bits

hour

HH 06
%H 6
hh 06
%h 6

minute

mm 03
%m 3

second

ss 43
%s 43

subsecond

%f 0
ff 08
fff 081
ffff 0814
fffff 08140
ffffff 081408
fffffff 0814084

miscellaneous bits

date separator

%/ /

time separator

%: :

AM/PM

%t A
tt AM

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-08-12T10:03:43.0815867Z
// dt.Kind -> Utc

TimeZoneInfo tz = TimeZoneInfo.FindSystemTimeZoneById("America/Chicago");
var sf = TimeZoneInfo.ConvertTime(d, tz);
// sf.ToString("o") -> 2026-08-12T05:03:43.0815867
// 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-08-12T05:03:43.0815867+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         --> 639221258230816331
// local.Ticks       --> 639221258230816331
// unspecified.Ticks --> 639221078230816331

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        --> 639221258230816296
// chicagoDto.Ticks --> 639221078230816296
//
// and the difference is the same as the time zone offset ✔️:
// (chicagoDto.Ticks - dto.Ticks) / TimeSpan.TicksPerHour --> -5