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) // 1/22/2025
// Long date:
string.Format("{0:D}", date) // Wednesday, January 22, 2025
// Short time:
string.Format("{0:t}", date) // 9:36 AM
// Long time:
string.Format("{0:T}", date) // 9:36:55 AM
// Full date/time (short time):
string.Format("{0:f}", date) // Wednesday, January 22, 2025 9:36 AM
// Full date/time (long time):
string.Format("{0:F}", date) // Wednesday, January 22, 2025 9:36:55 AM
// General date/time (long time):
string.Format("{0:g}", date) // 1/22/2025 9:36 AM
// General date/time (long time):
string.Format("{0:G}", date) // 1/22/2025 9:36:55 AM
// Sortable date/time:
string.Format("{0:s}", date) // 2025-01-22T09:36:55
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) // 01/22/2025
string.Format("{0:MMMM dd, yyyy}", date)// January 22, 2025
string.Format("{0:MMM yyyy}", date) // Jan 2025
string.Format("{0:hh:mm tt}", date) // 09:36 AM
// Year patterns:
string.Format("{0:yy yyy yyyy}", date) // 25 2025 2025
// Month patterns:
string.Format("{0:MM MMM MMMM}", date) // 01 Jan January
// Day patterns:
string.Format("{0:dd ddd dddd}", date) // 22 Wed Wednesday
// Hour
string.Format("{0:hh HH tt}", date) // 09 09 AM
// Minute, second, second fraction
string.Format("{0:mm ss ffff}", date) // 36 55 1677
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) // Wednesday, 22 January 2025 09:36
date.ToString("d", invC) // 01/22/2025
date.ToString("t", invC) // 09:36
// German CultureInfo
CultureInfo deC = new CultureInfo("de-De");
date.ToString("f", deC) // Mittwoch, 22. Januar 2025 09:36
date.ToString("d", deC) // 22.01.2025
date.ToString("t", deC) // 09:36
// French CultureInfo
CultureInfo frC = new CultureInfo("fr-FR");
date.ToString("f", frC) // mercredi 22 janvier 2025 09:36
date.ToString("d", frC) // 22/01/2025
date.ToString("t", frC) // 09:36
// Spanish CultureInfo
CultureInfo esC = new CultureInfo("es-ES");
date.ToString("f", esC) // miércoles, 22 de enero de 2025 9:36
date.ToString("d", esC) // 22/01/2025
date.ToString("t", esC) // 9:36
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: 2025 m: 1 d: 22
// Force time format to use ':' as separator ()
string.Format("{0:HH':'mm}", date) // 09:36
A simple tool for test your format string.