DateTime.ToString()

wassupy.com

shorthand format strings

dates

d 11/16/2025
D Sunday, November 16, 2025
m November 16
M November 16
y November 2025
Y November 2025

times

t 2:52 PM
T 2:52:58 PM

combos

f Sunday, November 16, 2025 2:52 PM
F Sunday, November 16, 2025 2:52:58 PM
g 11/16/2025 2:52 PM
G 11/16/2025 2:52:58 PM
o 2025-11-16T14:52:58.7353222
r Sun, 16 Nov 2025 14:52:58 GMT
s 2025-11-16T14:52:58
u 2025-11-16 14:52:58Z
U Sunday, November 16, 2025 2:52:58 PM

custom date bits

era

%g AD
gg AD

year

yyyyy 02025
yyyy 2025
yyyy 2025
yy 25
y November 2025

month

MMMM November
MMM Nov
MM 11
%M 11

day

dddd Sunday
ddd Sun
dd 16
%d 16

custom time bits

hour

HH 14
%H 14
hh 02
%h 2

minute

mm 52
%m 52

second

ss 58
%s 58

subsecond

%f 7
ff 73
fff 735
ffff 7353
fffff 73530
ffffff 735304
fffffff 7353046

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-11-16T19:52:58.7359117Z
// dt.Kind -> Utc

TimeZoneInfo tz = TimeZoneInfo.FindSystemTimeZoneById("America/Chicago");
var sf = TimeZoneInfo.ConvertTime(d, tz);
// sf.ToString("o") -> 2025-11-16T13:52:58.7359117
// 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-11-16T13:52:58.7359117+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         --> 638989195787359618
// local.Ticks       --> 638989195787359618
// unspecified.Ticks --> 638988979787359618

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