CSS unicode-bidi using html
This code shows how to display text with different reading directions
<html> <body> <p style="direction:rtl;"> Text using right to left direction </p> <p style="direction:rtl; unicode-bidi:bidi-override"> Text using right to left direction and unicode-bidi </p> </body> </html>