Assuming there are multiple data entities that need to be saved within a database (MySQL), for instance font-size, font-weight, color etc., some of which have fixed values and others are strings input by the user of the application, so they can hold any character whatsoever.
All this information needs to be concatenated and stored as a single, long string.
What is the best separator to use between these entities (assuming a small string), so as to avoid the situation in which that separator is found within the text input by the user?
BTW: I cannot create multiple columns for each individual entities.
Maybe use some data structure language like json?
and after: