[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)   // 10/10/2025
// Long date:
string.Format("{0:D}", date)   // Friday, October 10, 2025 
// Short time:
string.Format("{0:t}", date)   // 3:41 PM
// Long time:
string.Format("{0:T}", date)   // 3:41:06 PM
// Full date/time (short time):
string.Format("{0:f}", date)   // Friday, October 10, 2025 3:41 PM
// Full date/time (long time):
string.Format("{0:F}", date)   // Friday, October 10, 2025 3:41:06 PM
// General  date/time (long time):
string.Format("{0:g}", date)   // 10/10/2025 3:41 PM
// General  date/time (long time):
string.Format("{0:G}", date)   // 10/10/2025 3:41:06 PM
// Sortable date/time:
string.Format("{0:s}", date)   // 2025-10-10T15:41:06

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)   // 10/10/2025
string.Format("{0:MMMM dd, yyyy}", date)// October 10, 2025
string.Format("{0:MMM yyyy}", date)     // Oct 2025
string.Format("{0:hh:mm tt}", date)     // 03:41 PM

// Year patterns:
string.Format("{0:yy yyy yyyy}", date)  // 25 2025 2025
// Month patterns:
string.Format("{0:MM MMM MMMM}", date)  // 10 Oct October
// Day patterns:
string.Format("{0:dd ddd dddd}", date)  // 10 Fri Friday
// Hour
string.Format("{0:hh HH tt}", date)     // 03 15 PM
// Minute, second, second fraction 
string.Format("{0:mm ss ffff}", date)   // 41 06 1031

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)        // Friday, 10 October 2025 15:41 
date.ToString("d", invC)        // 10/10/2025 
date.ToString("t", invC)        // 15:41 
// German CultureInfo 
CultureInfo deC = new CultureInfo("de-De");
date.ToString("f", deC)        // Freitag, 10. Oktober 2025 15:41 
date.ToString("d", deC)        // 10.10.2025 
date.ToString("t", deC)        // 15:41 
// French CultureInfo 
CultureInfo frC = new CultureInfo("fr-FR");
date.ToString("f", frC)        // vendredi 10 octobre 2025 15:41 
date.ToString("d", frC)        // 10/10/2025 
date.ToString("t", frC)        // 15:41 
// Spanish CultureInfo 
CultureInfo esC = new CultureInfo("es-ES");
date.ToString("f", esC)        // viernes, 10 de octubre de 2025 15:41 
date.ToString("d", esC)        // 10/10/2025 
date.ToString("t", esC)        // 15:41 

    

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

TOOL: Test you format string

A simple tool for test your format string.

string.Format("
", DateTime.Now)