> ## Documentation Index
> Fetch the complete documentation index at: https://superofficeas-bugfix-ty-screen-designer-paradox.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Display values in current culture

> How to display values in current culture

The [CultureDataFormatter][1] handles conversion to and from the neutral format. This class is strictly not part of the DCF, since it lives in the `SoCore` assembly.

```csharp theme={null}
using SuperOffice.CRM.Globalization;

string encoded = "[I:12345]";
string localized = CultureDataFormatter.LocalizeEncoded( encoded );
// localized = "12345"
```

Floating point:

```csharp theme={null}
using SuperOffice.CRM.Globalization;

string encoded = "[D:1234.5]";
string localized = CultureDataFormatter.LocalizeEncoded( encoded );
// localized = "1234,5"
```

[1]: ./culturedataformatter
