> ## Documentation Index
> Fetch the complete documentation index at: https://docs.superoffice.com/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


## Related topics

- [CultureDataFormatter](/en/api/localization/culture/culturedataformatter.md)
- [Encoded values](/en/api/archive-providers/encoded-values.md)
- [Get Current Token](/en/api/reference/restful/rest/user/get-current-token.md)
- [Get Chatbot Prompt Suggestions](/en/api/reference/restful/agent/ai_agent/get-chatbot-prompt-suggestions.md)
- [Get Current Account Id](/en/api/reference/restful/agent/email_agent/get-current-account-id.md)
- [SuperOffice.WebApi.Agents.ConfigurationAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.ConfigurationAgent.md)
