HTML bdo tag
HTML tag stands for "BiDirectional Override" which is used to overrides the current/default text direction. This tag sets the direction of content within it to render on browser from left to right or right to left.
The tag is useful for the languages which are written from right to left such as Arabic and Hebrew.
https://www.w3schools.com/tags/tag_bdo.asp
<!DOCTYPE html>
<html>
<body>
<h1>The bdo element</h1>
<p>This paragraph will go left-to-right.</p>
<p><bdo dir="rtl">This paragraph will go right-to-left.</bdo></p>
</body>
</html>
结果是:
The bdo element
This paragraph will go left-to-right.
This paragraph will go right-to-left.