View Single Post
Old 11-28-2013, 09:13 AM   #5
Doitsu
Grand Sorcerer
Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.
 
Doitsu's Avatar
 
Posts: 5,737
Karma: 24031401
Join Date: Dec 2010
Device: Kindle PW2
Quote:
Originally Posted by pgfiore View Post
Using this example, "èacquistabile" (code view), I need two arrow hits to move from "è" to "a"...
That's because the accented è character is composed of two characters:

Code:
e U+0065 LATIN SMALL LETTER E
Code:
 ̀̀ U+300 COMBINING GRAVE ACCENT
I.e. this behavior is by design, because most Unicode editors behave this way.
Most likely your display issues are caused by these and other combining characters. Try replacing them with combined characters.

For example, replace U+0065 & U+0300 with:
Code:
è U+00E8 LATIN SMALL LETTER E WITH GRAVE
You can select this an other accented characters with the Windows Character Map.

EDIT: To identify the problematic Unicode characters, visit this website, paste a paragraph with accented characters and missing spaces into the Unicode Text box, click Convert and post the results here.

Last edited by Doitsu; 11-28-2013 at 10:36 AM.
Doitsu is offline   Reply With Quote