> ## 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.

# Encoded values

> Encoded values

With core NetServer, the archive row column data contains a `RawValue` property of type `Object`, and can safely be cast to the appropriate type.

Using NetServer web services, it depends on whether you are using SuperOffice proxies or not. If you are, the `RawValue` property contains the column value. If not, only the `DisplayValue` exists.

Except for string column values, `DisplayValue` always contains an encoded string that represents the column values. We recommend you use the `SuperOffice.CRM.Globalization.CultureDataFormatter` class to handle these encoded values. SuperOffice.CRM.Globalization.CultureDataFormatter easily parses and returns the column value in the correct data type.

An encoded value is always a string of characters in the format: \[data-type-marker : value], for example, \[I:3]. Columns that are of type string will never be in an encoded format.

The data type marker indicates the column data type followed by a colon, then the column data value. The following table lists all encodings.

| Data Type       | Marker | Example                   |
| --------------- | ------ | ------------------------- |
| Binary          | B      | \[B:X98…]                 |
| Date            | D      | \[D:09.11.2017]           |
| DateTime        | DT     | \[DT:11/09/2017 14:53:18] |
| Double, Decimal | F      | \[F:123.4]                |
| Int             | I      | \[I:123]                  |
| Money           | M      | \[M:123.45]               |
| Time            | T      | \[T:14:52]                |
| String          |        | "Not encoded"             |

For each data type, `CultureDataFormatter` has a static `Encode` and `ParseEncoded` method, for example:

* `string = CultureDataFormatter.EncodeInt(int)`
* `int = CultureDataFormatter.ParseEncodedInt(string)`

Although query restrictions do not have to encode parameter values when settings each restriction, they are allowed and NetServer knows how to detect and process them accordingly.

## Continue reading

* [Aggregation][1]

[1]: ./data-aggregation


## Related topics

- [CultureDataFormatter](/en/api/localization/culture/culturedataformatter.md)
- [SuperOffice.WebApi.Data.CultureDataFormatter](/en/api/reference/webapi/SuperOffice.WebApi.Data.CultureDataFormatter.md)
- [SuperOffice.WebApi.Data.SignedPublicKey](/en/api/reference/webapi/SuperOffice.WebApi.Data.SignedPublicKey.md)
- [NetServer archive providers](/en/api/archive-providers/index.md)
- [NSSignedPublicKey](/en/automation/crmscript/reference/CRMScript.NetServer.NSSignedPublicKey.md)
- [SuperOffice.WebApi.Data.User](/en/api/reference/webapi/SuperOffice.WebApi.Data.User.md)
