I want to capitalize first letter of "ismail"
when i write "ismail".title()
it shows: Ismail. I want to seem like "İsmail".
Is there any function for this?
Asked
Active
Viewed 71 times
0

Tony Stark
- 135
- 3
- 13
-
Does [this](https://stackoverflow.com/questions/727507/how-can-i-convert-unicode-to-uppercase-to-print-it) question help? – TerryA Aug 30 '17 at 01:28
-
The character you apparently want is an accented capital I. If you start with accented lower case ì you would get the uppercase İ – Garr Godfrey Aug 30 '17 at 01:30
-
@TerryA no, it returns "I" again – Tony Stark Aug 30 '17 at 01:33
-
try this: https://stackoverflow.com/questions/34755556/how-do-i-add-accents-to-a-letter – Garr Godfrey Aug 30 '17 at 01:33
-
1@GarrGodfrey It is not an accented `i`. The problem is that in Turkish the uppercase for `i` is `İ` and not `I`. – Selcuk Aug 30 '17 at 04:31