DateTime.ToString()

wassupy.com

shorthand format strings

dates

d 12/31/2025
D Wednesday, December 31, 2025
m December 31
M December 31
y December 2025
Y December 2025

times

t 5:23 PM
T 5:23:05 PM

combos

f Wednesday, December 31, 2025 5:23 PM
F Wednesday, December 31, 2025 5:23:05 PM
g 12/31/2025 5:23 PM
G 12/31/2025 5:23:05 PM
o 2025-12-31T17:23:05.3726336
r Wed, 31 Dec 2025 17:23:05 GMT
s 2025-12-31T17:23:05
u 2025-12-31 17:23:05Z
U Wednesday, December 31, 2025 5:23:05 PM

custom date bits

era

%g AD
gg AD

year

yyyyy 02025
yyyy 2025
yyyy 2025
yy 25
y December 2025

month

MMMM December
MMM Dec
MM 12
%M 12

day

dddd Wednesday
ddd Wed
dd 31
%d 31

custom time bits

hour

HH 17
%H 17
hh 05
%h 5

minute

mm 23
%m 23

second

ss 05
%s 5

subsecond

%f 3
ff 37
fff 372
ffff 3723
fffff 37232
ffffff 372326
fffffff 3723264

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") -> 2025-12-31T22:23:05.3731069Z
// dt.Kind -> Utc

TimeZoneInfo tz = TimeZoneInfo.FindSystemTimeZoneById("America/Chicago");
var sf = TimeZoneInfo.ConvertTime(d, tz);
// sf.ToString("o") -> 2025-12-31T16:23:05.3731069
// 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-12-31T16:23:05.3731069+00:00

The time is correct, but the time zone offset is not. Chicago is -06: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") --> -06: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         --> 639028165853731450
// local.Ticks       --> 639028165853731450
// unspecified.Ticks --> 639027949853731450

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