Hello,
we use Hybris in the Cloud. We use service Properties in the Cloud Services (for example hcs_common).
We have a problem with a property which should be represented as
webservice#01 in the HAC and read analogue in the Java code.
So we defined
our.property=webservice\\#01
in the service hcs_common, in order to escape the hashtag.
Since some weeks we have problems with the option Backslash Compatibility (when saving the properties)

We noticed the following when:
1. Backslash Compatibility=true
In this case Hybris truncates a "\" EVERY TIME when saving the system properties until 2 backslashes remain. At the end you can see our property cut off again in the Hac (it is called "webservice"). Attempt to use Unicode characters: in this case, after saving, the Unicode characters will be interpreted again, and converted back to the actual characters the next time the system properties are called
Example: "\u005C" becomes "#" and the property is displayed incorrectly in the HAC after some savings..
02. Backslash Compatibility=false
In this case, Hybris adds ON EVERY SAVE of the properties, an additional "\" to the existing "\"
It is unclear how special characters must be encoded so that they survive later persistings in the system properties.
So how can we properly persist our property value in order to get permanently
webservice#01
in the hac (with and without Backslash Compatibility=true/false)
Where can we get documentation about feature Backslash Compatibility? Where can we get documentation about encoding special characters in the Cloud Service Properties (with Backslash Compatibility = true/false)?
Many thanks in advance!