I use the following css to set the text for a button that will remove the tag:
button.close:after { content: '×'; }
The result is such a beautiful button:

But at random, the string × is replaced by the string Ã- . At first I thought that this could be due to coding, but if this is really a problem, I think that this will not happen by accident. This happens at a low frequency, and at this point this does not happen (will refresh the question using another print screen as soon as this happens again).
This css code comes from a .less file that I compile and then reduce and then concatenate.
How can I make sure the string × will be displayed all the time?
source share