DateTime.ToString()

wassupy.com

shorthand format strings

dates

d 9/20/2026
D Sunday, September 20, 2026
m September 20
M September 20
y September 2026
Y September 2026

times

t 3:34 AM
T 3:34:02 AM

combos

f Sunday, September 20, 2026 3:34 AM
F Sunday, September 20, 2026 3:34:02 AM
g 9/20/2026 3:34 AM
G 9/20/2026 3:34:02 AM
o 2026-09-20T03:34:02.0611038
r Sun, 20 Sep 2026 03:34:02 GMT
s 2026-09-20T03:34:02
u 2026-09-20 03:34:02Z
U Sunday, September 20, 2026 3:34:02 AM

custom date bits

era

%g AD
gg AD

year

yyyyy 02026
yyyy 2026
yyyy 2026
yy 26
y September 2026

month

MMMM September
MMM Sep
MM 09
%M 9

day

dddd Sunday
ddd Sun
dd 20
%d 20

custom time bits

hour

HH 03
%H 3
hh 03
%h 3

minute

mm 34
%m 34

second

ss 02
%s 2

subsecond

%f 0
ff 06
fff 061
ffff 0618
fffff 06188
ffffff 061882
fffffff 0618825

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-09-20T07:34:02.0615346Z
// dt.Kind -> Utc

TimeZoneInfo tz = TimeZoneInfo.FindSystemTimeZoneById("America/Chicago");
var sf = TimeZoneInfo.ConvertTime(d, tz);
// sf.ToString("o") -> 2026-09-20T02:34:02.0615346
// 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-09-20T02:34:02.0615346+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         --> 639254864420615522
// local.Ticks       --> 639254864420615522
// unspecified.Ticks --> 639254684420615522

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