bdo
I. Description
The HTML bdo ('Bidirectional Text Override') element is used to manually control which direction (right-to-left, or left-to-right) the enclosed text is rendered.
See also the bdi ('Bidirectional Isolate') element.
II. Examples
<!DOCTYPE html>
<html>
<head>
<title>Example Page</title>
</head>
<body>
<h1>Example of Manual Text Direction Control</h1>
<p>The name 'Pepsi' spelled backwards is <bdo dir="rtl">Pepsi</bdo>.</p>
</body>
</html>