[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)   // 2/19/2025
// Long date:
string.Format("{0:D}", date)   // Wednesday, February 19, 2025 
// Short time:
string.Format("{0:t}", date)   // 10:24 AM
// Long time:
string.Format("{0:T}", date)   // 10:24:37 AM
// Full date/time (short time):
string.Format("{0:f}", date)   // Wednesday, February 19, 2025 10:24 AM
// Full date/time (long time):
string.Format("{0:F}", date)   // Wednesday, February 19, 2025 10:24:37 AM
// General  date/time (long time):
string.Format("{0:g}", date)   // 2/19/2025 10:24 AM
// General  date/time (long time):
string.Format("{0:G}", date)   // 2/19/2025 10:24:37 AM
// Sortable date/time:
string.Format("{0:s}", date)   // 2025-02-19T10:24:37

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)   // 02/19/2025
string.Format("{0:MMMM dd, yyyy}", date)// February 19, 2025
string.Format("{0:MMM yyyy}", date)     // Feb 2025
string.Format("{0:hh:mm tt}", date)     // 10:24 AM

// Year patterns:
string.Format("{0:yy yyy yyyy}", date)  // 25 2025 2025
// Month patterns:
string.Format("{0:MM MMM MMMM}", date)  // 02 Feb February
// Day patterns:
string.Format("{0:dd ddd dddd}", date)  // 19 Wed Wednesday
// Hour
string.Format("{0:hh HH tt}", date)     // 10 10 AM
// Minute, second, second fraction 
string.Format("{0:mm ss ffff}", date)   // 24 37 2910

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)        // Wednesday, 19 February 2025 10:24 
date.ToString("d", invC)        // 02/19/2025 
date.ToString("t", invC)        // 10:24 
// German CultureInfo 
CultureInfo deC = new CultureInfo("de-De");
date.ToString("f", deC)        // Mittwoch, 19. Februar 2025 10:24 
date.ToString("d", deC)        // 19.02.2025 
date.ToString("t", deC)        // 10:24 
// French CultureInfo 
CultureInfo frC = new CultureInfo("fr-FR");
date.ToString("f", frC)        // mercredi 19 février 2025 10:24 
date.ToString("d", frC)        // 19/02/2025 
date.ToString("t", frC)        // 10:24 
// Spanish CultureInfo 
CultureInfo esC = new CultureInfo("es-ES");
date.ToString("f", esC)        // miércoles, 19 de febrero de 2025 10:24 
date.ToString("d", esC)        // 19/02/2025 
date.ToString("t", esC)        // 10:24 

    

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

TOOL: Test you format string

A simple tool for test your format string.

string.Format("
", DateTime.Now)