DateTime.ToString()

wassupy.com

shorthand format strings

dates

d 8/18/2025
D Monday, August 18, 2025
m August 18
M August 18
y August 2025
Y August 2025

times

t 5:57 AM
T 5:57:22 AM

combos

f Monday, August 18, 2025 5:57 AM
F Monday, August 18, 2025 5:57:22 AM
g 8/18/2025 5:57 AM
G 8/18/2025 5:57:22 AM
o 2025-08-18T05:57:22.7445665
r Mon, 18 Aug 2025 05:57:22 GMT
s 2025-08-18T05:57:22
u 2025-08-18 05:57:22Z
U Monday, August 18, 2025 5:57:22 AM

custom date bits

era

%g AD
gg AD

year

yyyyy 02025
yyyy 2025
yyyy 2025
yy 25
y August 2025

month

MMMM August
MMM Aug
MM 08
%M 8

day

dddd Monday
ddd Mon
dd 18
%d 18

custom time bits

hour

HH 05
%H 5
hh 05
%h 5

minute

mm 57
%m 57

second

ss 22
%s 22

subsecond

%f 7
ff 74
fff 744
ffff 7448
fffff 74481
ffffff 744812
fffffff 7448124

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") -> 2025-08-18T09:57:22.7450322Z
// dt.Kind -> Utc

TimeZoneInfo tz = TimeZoneInfo.FindSystemTimeZoneById("America/Chicago");
var sf = TimeZoneInfo.ConvertTime(d, tz);
// sf.ToString("o") -> 2025-08-18T04:57:22.7450322
// 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") -> 2025-08-18T04:57:22.7450322+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         --> 638911078427450557
// local.Ticks       --> 638911078427450557
// unspecified.Ticks --> 638910898427450557

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