admin管理员组

文章数量:1350119

I am trying different cultures in spanish language and testing some latin and south american cultures.

When using "es-MX" culture the console shows me correctly the date, but when using "es-CO" culture the console shows me some unkown characters.

The following code samples shows the result obtained when executing:

    class Program
    {
        static void Main(string[] args)
        {
            //Mexico Culture
            CultureInfo culture = new CultureInfo("es-MX");
            DateTime today = DateTime.Today;

            string dateFormat = today.ToString(culture);
            Console.WriteLine(dateFormat);

            //Result: 02/04/2025 12:00:00 a. m.

            Console.ReadLine();
        }
    }
    class Program
    {
        static void Main(string[] args)
        {
            //Colombia Culture
            CultureInfo culture = new CultureInfo("es-CO");
            DateTime today = DateTime.Today;

            string dateFormat = today.ToString(culture);
            Console.WriteLine(dateFormat);

            //Result: 2/04/2025 12:00:00?a.?m.

            Console.ReadLine();
        }
    }

Can anybody tell me how to change any configuration to prevent that unknown characters?

I am trying different cultures in spanish language and testing some latin and south american cultures.

When using "es-MX" culture the console shows me correctly the date, but when using "es-CO" culture the console shows me some unkown characters.

The following code samples shows the result obtained when executing:

    class Program
    {
        static void Main(string[] args)
        {
            //Mexico Culture
            CultureInfo culture = new CultureInfo("es-MX");
            DateTime today = DateTime.Today;

            string dateFormat = today.ToString(culture);
            Console.WriteLine(dateFormat);

            //Result: 02/04/2025 12:00:00 a. m.

            Console.ReadLine();
        }
    }
    class Program
    {
        static void Main(string[] args)
        {
            //Colombia Culture
            CultureInfo culture = new CultureInfo("es-CO");
            DateTime today = DateTime.Today;

            string dateFormat = today.ToString(culture);
            Console.WriteLine(dateFormat);

            //Result: 2/04/2025 12:00:00?a.?m.

            Console.ReadLine();
        }
    }

Can anybody tell me how to change any configuration to prevent that unknown characters?

Share Improve this question edited 2 days ago iEligio asked Apr 1 at 22:23 iEligioiEligio 71 bronze badge New contributor iEligio is a new contributor to this site. Take care in asking for clarification, commenting, and answering. Check out our Code of Conduct. 5
  • Wonder if that is reproducible @mjwills ... dotnetfiddle/piNKWm – Cleptus Commented Apr 1 at 23:03
  • @Cleptus It is, but you habe to look at the data and not its lookalike or presentation ;o) – Sir Rufo Commented Apr 2 at 4:46
  • @mjwills I have just updated the question following your recommendation, thanks – iEligio Commented 2 days ago
  • @SirRufo what do you mean by data? – iEligio Commented 2 days ago
  • @iEligio You will never know if two strings are equal if you compare their presentation f.i. on the console. Have a look at the real data (byte-array) of the strings with Encoding.UTF8.GetBytes. Same bytes, same string – Sir Rufo Commented 2 days ago
Add a comment  | 

1 Answer 1

Reset to default 1

Looks like the issue comes from different Unicode spaces used in certain cultures. Some Spanish-speaking locales (like "es-CO") use a non-breaking space (U+00A0) instead of a regular space (U+0020). Depending on your console, this might show up as weird characters.

Fix:

You can simply replace those non-breaking spaces with normal spaces before displaying the date:

using System;
using System.Globalization;

class Program
{
    static void Main()
    {
        DateTime now = DateTime.Now;

        // Using "es-MX" (Mexico)
        string formattedMX = now.ToString("F", new CultureInfo("es-MX"));
        Console.WriteLine("es-MX: " + formattedMX);

        // Using "es-CO" (Colombia)
        string formattedCO = now.ToString("F", new CultureInfo("es-CO"));

        // Replace non-breaking spaces with regular spaces
        formattedCO = formattedCO.Replace("\u00A0", " ");
        Console.WriteLine("es-CO: " + formattedCO);
    }
}

Some consoles (especially the Windows Command Prompt) might not support certain characters properly. You can try forcing UTF-8 encoding before printing:

Console.OutputEncoding = System.Text.Encoding.UTF8;

本文标签: cWhat characters or encoding is replacing spaces in datetime formatStack Overflow