free-symbols

Right-to-left Mark Symbol

The Right-to-Left Mark (U+200F) is a formatting character that helps text render with right-to-left direction.

U+200F

The “Right-to-Left Mark” is a Unicode punctuation-formatting character used to influence text direction. It can be helpful when mixing right-to-left scripts with left-to-right content. Use it carefully, since invisible marks can affect how strings are displayed and processed.

Right-to-left Mark Symbol Meaning

The Right-to-Left Mark (Unicode U+200F, HTML entity ‏) is a directional formatting character. Unlike visible punctuation, it is typically invisible, but it can change how adjacent characters are arranged and interpreted by the text rendering engine. The mark is commonly used in bidirectional (bidi) text, such as when right-to-left languages share a line with left-to-right text (or numbers). In practice, it can be inserted around content segments to signal that the following text should be treated as right-to-left for display. Because it is a formatting character, it may not be obvious in copied text—so test in your target editor, platform, and browser.

Common uses

  • Ensuring correct display when right-to-left text appears inside predominantly left-to-right UI labels
  • Stabilizing the direction of a quoted or pasted phrase that contains right-to-left characters
  • Controlling how mixed-direction strings are rendered in chat messages or comments
  • Maintaining expected ordering of right-to-left segments alongside numbers and punctuation
  • Embedding right-to-left script snippets in templates, CMS fields, or multilingual documents

Examples

‏ Right-to-Left Mark (U+200F)

  • ‏שלום
  • Order: 123 ‏مرحبا بالعالم
  • Title: ‏עברית
  • Note: ‏تمت إضافة العنصر رقم 7
  • Link text ‏مثال

Variations

Ready to copy

Technical codes

UnicodeU+200F
HTML Entity‏
HTML Code‏
CSS\200F

FAQ

What does the Right-to-left Mark symbol mean?

The Right-to-Left Mark (Unicode U+200F, HTML entity ‏) is a directional formatting character. Unlike visible punctuation, it is typically invisible, but it can change how adjacent characters are arranged and interpreted by the text rendering engine. The mark is commonly used in bidirectional (bidi) text, such as when right-to-left languages share a line with left-to-right text (or numbers). In practice, it can be inserted around content segments to signal that the following text should be treated as right-to-left for display. Because it is a formatting character, it may not be obvious in copied text—so test in your target editor, platform, and browser.

Is the Right-to-Left Mark visible when I paste it?

Usually it’s not visually obvious. It’s a formatting character intended to affect text direction rather than display as a glyph.

What is the Unicode value for this symbol?

The Right-to-Left Mark is U+200F.

How can I insert it in HTML or code?

Use the HTML entity ‏ for HTML, or insert U+200F via your programming language escape (CSS: \\200F, JavaScript: \\u{200F}).

Can it cause issues in passwords or identifiers?

Yes. Because it’s an invisible formatting character, it can change how text is processed or displayed. Avoid adding it to values where exact matching matters (e.g., usernames, IDs, or passwords).