Some examples and tips on C# DateTime formatting using string.Format() or .ToString() methods.
Standard formats are typically used when you need a fast string representation of your DateTime object based on current culture.
DateTime date = DateTime.Now;
// Short date:
string.Format("{0:d}", date) // 4/12/2026
// Long date:
string.Format("{0:D}", date) // Sunday, April 12, 2026
// Short time:
string.Format("{0:t}", date) // 10:20 PM
// Long time:
string.Format("{0:T}", date) // 10:20:41 PM
// Full date/time (short time):
string.Format("{0:f}", date) // Sunday, April 12, 2026 10:20 PM
// Full date/time (long time):
string.Format("{0:F}", date) // Sunday, April 12, 2026 10:20:41 PM
// General date/time (long time):
string.Format("{0:g}", date) // 4/12/2026 10:20 PM
// General date/time (long time):
string.Format("{0:G}", date) // 4/12/2026 10:20:41 PM
// Sortable date/time:
string.Format("{0:s}", date) // 2026-04-12T22:20:41
Custom formats are useful when you need more flexibility on the output string format.
DateTime date = DateTime.Now;
string.Format("{0:MM/dd/yyyy}", date) // 04/12/2026
string.Format("{0:MMMM dd, yyyy}", date)// April 12, 2026
string.Format("{0:MMM yyyy}", date) // Apr 2026
string.Format("{0:hh:mm tt}", date) // 10:20 PM
// Year patterns:
string.Format("{0:yy yyy yyyy}", date) // 26 2026 2026
// Month patterns:
string.Format("{0:MM MMM MMMM}", date) // 04 Apr April
// Day patterns:
string.Format("{0:dd ddd dddd}", date) // 12 Sun Sunday
// Hour
string.Format("{0:hh HH tt}", date) // 10 22 PM
// Minute, second, second fraction
string.Format("{0:mm ss ffff}", date) // 20 41 0169
When you format a DateTime with DateTime.ToString() you can also specify the culture to use.
using System.Globalization;
// ...
DateTime date = DateTime.Now;
// InvariantCulture
CultureInfo invC = CultureInfo.InvariantCulture;
date.ToString("f", invC) // Sunday, 12 April 2026 22:20
date.ToString("d", invC) // 04/12/2026
date.ToString("t", invC) // 22:20
// German CultureInfo
CultureInfo deC = new CultureInfo("de-De");
date.ToString("f", deC) // Sonntag, 12. April 2026 22:20
date.ToString("d", deC) // 12.04.2026
date.ToString("t", deC) // 22:20
// French CultureInfo
CultureInfo frC = new CultureInfo("fr-FR");
date.ToString("f", frC) // dimanche 12 avril 2026 22:20
date.ToString("d", frC) // 12/04/2026
date.ToString("t", frC) // 22:20
// Spanish CultureInfo
CultureInfo esC = new CultureInfo("es-ES");
date.ToString("f", esC) // domingo, 12 de abril de 2026 22:20
date.ToString("d", esC) // 12/04/2026
date.ToString("t", esC) // 22:20
Any characters not used by the formatter is reported in the result string. If you need to enter text with reserved characters that must be inserted between two ' (single quote).
DateTime date = DateTime.Now;
// Escaped date text
string.Format("{0:'y:' yyyy' m:' M 'd:' d}", date) // y: 2026 m: 4 d: 12
// Force time format to use ':' as separator ()
string.Format("{0:HH':'mm}", date) // 22:20
A simple tool for test your format string.