Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Two expanded ascii codes are printed on the screen during the display of Turkish characters (ı, İ, ü, Ü, ö, Ö, Ş, Ş, ğ, Ğ, ç, Ç). #54

Open
PozitronikTech opened this issue Apr 28, 2020 · 0 comments

Comments

@PozitronikTech
Copy link

utf-8 extended ascii me dec (195,156) or hex (C3.9C) return extended ascii code of 'ü' character dec (252) or hex (FC).
The dmd library produces individual characters for each incoming code of the incoming character and prints them on the screen. For the 'ü' character, the characters on the screen with two dec (195,156) print the screen.
In the 'a' character, the second code is 0. It comes as dec (97,0).
In other words, the second dec value of each ascii code between 0-127 is 0.
Is it possible to make an arrangement for those whose second dec value is greater than zero by making an arrangement in the code part?
Site with extended ascii table
https://www.rapidtables.com/code/text/ascii-table.html
I hope my english was successful. Thank u.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant