When Unicode knows when to read from right to left or left to right.
Both in word and in python.
For instance,
ูุฐุง ูู ุงูู
ูุนูู ุฌูุฏ ุฑุฌู ุงูุตุจุงุญ!
If you manage to go back, it will be read from right to left.
I printed a Unicode byte representation which
u'\u0647\u0630\u0627 \u0647\u0648 \u0627\u0644\u0645\u0644\u0639\u0648\u0646 \u062c\u064a\u062f \u0631\u062c\u0644 \u0627\u0644\u0635\u0628\u0627\u062d!'
But I did not see anything that meant left to right or left.
For regular strings like
Hi how are you, it works from left to right.
Should there be a unicode character or byte to indicate left to right or something else?
source share