DateTime.ToString()

wassupy.com

shorthand format strings

dates

d 3/15/2026
D Sunday, March 15, 2026
m March 15
M March 15
y March 2026
Y March 2026

times

t 2:07 PM
T 2:07:52 PM

combos

f Sunday, March 15, 2026 2:07 PM
F Sunday, March 15, 2026 2:07:52 PM
g 3/15/2026 2:07 PM
G 3/15/2026 2:07:52 PM
o 2026-03-15T14:07:52.0092012
r Sun, 15 Mar 2026 14:07:52 GMT
s 2026-03-15T14:07:52
u 2026-03-15 14:07:52Z
U Sunday, March 15, 2026 2:07:52 PM

custom date bits

era

%g AD
gg AD

year

yyyyy 02026
yyyy 2026
yyyy 2026
yy 26
y March 2026

month

MMMM March
MMM Mar
MM 03
%M 3

day

dddd Sunday
ddd Sun
dd 15
%d 15

custom time bits

hour

HH 14
%H 14
hh 02
%h 2

minute

mm 07
%m 7

second

ss 52
%s 52

subsecond

%f 0
ff 00
fff 009
ffff 0094
fffff 00940
ffffff 009401
fffffff 0094012

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") -> 2026-03-15T18:07:52.0096707Z
// dt.Kind -> Utc

TimeZoneInfo tz = TimeZoneInfo.FindSystemTimeZoneById("America/Chicago");
var sf = TimeZoneInfo.ConvertTime(d, tz);
// sf.ToString("o") -> 2026-03-15T13:07:52.0096707
// 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-03-15T13:07:52.0096707+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         --> 639091948720097069
// local.Ticks       --> 639091948720097069
// unspecified.Ticks --> 639091768720097069

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