Left-To-Right
After the February update, the PC client no longer supports Left-to-Right characters. The method described below used to work on PC, Android, and Apple. I am formatting the string as such:
`return $"{LeftToRightOverride}{LeftToRightIsolate}{str}{PopDirectionalIsolate}{PopDirecitonalFormatting}";`
With the following unicode characters:
```
public const string PopDirecitonalFormatting = "\u202C";
public const string LeftToRightEmbedding = "\u202A";
public const string LeftToRightOverride = "\u202D";
public const string LeftToRightIsolate = "\u2066";
public const string PopDirectionalIsolate = "\u2069";
```
0
Please sign in to leave a comment.
Comments
0 comments