The string in the question does not trigger wrong display order, unless there are control characters in the username string, but e.g. a message of the form
User (N badges) wrote:
would do that, if User were replaced by a name in Arabic letters, say أحمد, and N were replaced by a number, say 3. The rendering would then be
أحمد (3 badges) said:
Technically, this is not a bug; it follows from Unicode bidirectionality rules – the strong right-to-left (RTL) directionality of Arabic letters affects characters with weak directionality like parentheses. But it is all wrong in practical terms, of course. Any string that may contain RTL characters in a generally left-to-right context should be protected, isolated. In HTML documents, there are three ways to do that:
- Character level: use the control characters U+202B (right-to-left embedding, RLE) before and U+202C (pop directional formatting, PDF) after the string. In HTML, you could use
‫ and ‬ for them. This is supported by IE 9 but not by most other browsers.
- Markup level: use the
<bdi> markup. As mentioned, it is not supported by browsers yet.
- Stylesheet: use
unicode-bidi: embed. This is generally supported by modern browsers.
You can combine the stylesheet approach with the markup approach. It’s logical to do so, and in future browsers, this double approach will work even with stylesheets disabled:
<script>
document.createElement('bdi');
</script>
<style>
bdi { unicode-bidi: bidi-override; }
</style>
...
<bdi>أحمد</bdi> (3 badges) wrote:
The script code is there to make older versions of IE recognize the <bdi> element, so that styles will take effect on it. This would of course fail when scripting is disabled, so it would be slightly safer to use <span> with class, and you could still wrap it inside <bdi>. So an alternative is
<style>
.bdi { unicode-bidi: bidi-override; }
</style>
...
<bdi><span class=bdi>أحمد</span></bdi> (3 badges) wrote:
<span>doesn’t isolate it? Even<span dir="rtl">, or<span lang="insert-appropriate-language-code-here">? – Paul D. Waite Nov 4 '11 at 16:59