I have an aspx page whose name contains Hebrew and English characters, and the word order is messed up.Is there a way to create a headline so that the words don't get mixed up or is this an OS problem?
This is what the name should say:
Here is the name:
Try using embed codes in Unicode format :
The result looks like הוספת קובץ JS עורך ישן - Mozilla Firefox , and it marked up as follows:
‫ (right-to-left embedding) הוספת קובץ JS עורך ישן ‬ (pop directional formatting) - Mozilla Firefox
( <title dir="rtl">, .)
<title dir="rtl">
@jleedev , . :
HTML- ,
, , . HTML ., ., , , , . - U + 202B - (RLE) U + 202A (LRE). <span dir="rtl"> <span dir="ltr">, . - U + 202C POP DIRECTIONAL FORMATTING (PDF). . , .<p>The title says "‫...‬" in Hebrew<p>
, , . HTML .
, .
, , , , . - U + 202B - (RLE) U + 202A (LRE). <span dir="rtl"> <span dir="ltr">, . - U + 202C POP DIRECTIONAL FORMATTING (PDF). . , .
<span dir="rtl">
<span dir="ltr">
<p>The title says "‫...‬" in Hebrew<p>
if you use utf-8 you should have no problem.
add the following to <head> and make sure you save it as utf-8
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
Source: https://habr.com/ru/post/1730354/More articles:Как обрабатывать несколько файлов src в dbunit-maven-plugin - maven-2JavaScript string.format function not working in IE - javascriptHow to get OS language using C ++ API? - c ++How does Jboss Timeout work? - web-applicationsThe activity indicator should be displayed when switching from UITableView1 to UITableView2 - objective-cWriting a gui web application. What technology should I use? - javaConcatenating a file by getting the full path in C - cСоздание оператора Linq для создания объектов - linq-to-entitiesCreate a new delete_action object in the Symfony 1.4 admin generator - symfony1Why is my LocationListener getting null? - androidAll Articles