In my angular project I'm using "@ngx-translate/core": "^11.0.1" for translation from english into Persian.
<label class="code">
({{'User.' + currency | translate}})
</label>
when using parentheses wrapping translation pipe for Persian language parentheses are appearing in wrong way in Safari (IOS) 
but in chrome it is working as expected 
How can I make it work right?
Wrap it in span tag and add a style with display: inline-block.
<label class="code">
<span style="display: inline-block">({{'User.' + currency | translate}})</span>
</label>
It should solve your problem.