[C#] Format DateTime as String Examples

Some examples and tips on C# DateTime formatting using string.Format() or .ToString() methods.

Standard DateTime format

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)   // 3/23/2026
// Long date:
string.Format("{0:D}", date)   // Monday, March 23, 2026 
// Short time:
string.Format("{0:t}", date)   // 10:33 AM
// Long time:
string.Format("{0:T}", date)   // 10:33:57 AM
// Full date/time (short time):
string.Format("{0:f}", date)   // Monday, March 23, 2026 10:33 AM
// Full date/time (long time):
string.Format("{0:F}", date)   // Monday, March 23, 2026 10:33:57 AM
// General  date/time (long time):
string.Format("{0:g}", date)   // 3/23/2026 10:33 AM
// General  date/time (long time):
string.Format("{0:G}", date)   // 3/23/2026 10:33:57 AM
// Sortable date/time:
string.Format("{0:s}", date)   // 2026-03-23T10:33:57

Custom DateTime format

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)   // 03/23/2026
string.Format("{0:MMMM dd, yyyy}", date)// March 23, 2026
string.Format("{0:MMM yyyy}", date)     // Mar 2026
string.Format("{0:hh:mm tt}", date)     // 10:33 AM

// Year patterns:
string.Format("{0:yy yyy yyyy}", date)  // 26 2026 2026
// Month patterns:
string.Format("{0:MM MMM MMMM}", date)  // 03 Mar March
// Day patterns:
string.Format("{0:dd ddd dddd}", date)  // 23 Mon Monday
// Hour
string.Format("{0:hh HH tt}", date)     // 10 10 AM
// Minute, second, second fraction 
string.Format("{0:mm ss ffff}", date)   // 33 57 9986

Format DateTime for a specific culture

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)        // Monday, 23 March 2026 10:33 
date.ToString("d", invC)        // 03/23/2026 
date.ToString("t", invC)        // 10:33 
// German CultureInfo 
CultureInfo deC = new CultureInfo("de-De");
date.ToString("f", deC)        // Montag, 23. März 2026 10:33 
date.ToString("d", deC)        // 23.03.2026 
date.ToString("t", deC)        // 10:33 
// French CultureInfo 
CultureInfo frC = new CultureInfo("fr-FR");
date.ToString("f", frC)        // lundi 23 mars 2026 10:33 
date.ToString("d", frC)        // 23/03/2026 
date.ToString("t", frC)        // 10:33 
// Spanish CultureInfo 
CultureInfo esC = new CultureInfo("es-ES");
date.ToString("f", esC)        // lunes, 23 de marzo de 2026 10:33 
date.ToString("d", esC)        // 23/03/2026 
date.ToString("t", esC)        // 10:33 

    

Character escape and text

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: 3 d: 23 
// Force time format to use ':' as separator ()
string.Format("{0:HH':'mm}", date)                  // 10:33

TOOL: Test you format string

A simple tool for test your format string.

string.Format("
", DateTime.Now)