I am trying to write my PhD proposal in Turkish. And I copied a title page from overleaf. The problem that I am facing is when creating the Title, Institution name and etc. \textsc{} omits the punctuation symbols of some Turkish chars, for instance the letter 'İ' is converted to 'I' which is not correct. On the other hand, the letter Ğ and Ü are printed correctly.
Following is short piece of What I want :
#+LATEX_HEADER: \usepackage[T1]{fontenc}
#+LATEX_HEADER: \usepackage[utf8]{inputenc}
#+LATEX_HEADER: \usepackage{charter} % this for font type
\begin{titlepage}
\textsc{\Large Fen Bilimleri Enstitüsü}\\[0.5cm] % Major heading such as course name
\textsc{\Large Bilgisayar Mühendisliği Anabilim Dalı}\\[0.5cm] % Major heading such as course name
\textsc{\Large Bilgisayar Mühendisliği Programı}\\[0.5cm] % Minor heading such as course title
\end{title-age}
And the following is the output of the above code snippet.
As you can see there certain characters that are not printed correctly. But if I remove \textsc{} letter outputs are fine but this time the format is not what I want.
I tried to use \'{I} trick but it did not work out.
How can I print out the letter 'İ' it correctly ?



