Questions tagged [turkish]

This tag refers to the Turkish language. Use it on questions dealing with text or data written in this language.

The Turkish language, spoken by 80 million people in and around the Republic of Turkey, is the most commonly spoken of the Turkic languages, which span from southeast Europe to northeast Asia.

To read further, here is a Wikipedia article on the Turkish language.

177 questions
2
votes
2 answers

Writing Turkish characters to MySQL using WampServer and Java

i am having a problem with my Wamp Server. When i execute a query which contains Turkish characters, i am getting this error: SEVERE: Incorrect string value: '\xE7l? ya...' for column 'body' at row 1 java.sql.SQLException: Incorrect string value:…
Olcay Ertaş
  • 5,987
  • 8
  • 76
  • 112
2
votes
2 answers

Turkish character encoding with MySQL

I'm having issues with turkish characters as I mentioned in title. I created a function on MySQL: DELIMITER $$ CREATE DEFINER=`root`@`localhost` FUNCTION `ilgiAlaniFunc`( idKullanici INT, ilgi_alani_ismi varchar(255)…
interlude
  • 843
  • 8
  • 29
1
vote
1 answer

Specifying a Character Encoding for Javascript

I am trying to convert a string into uppercase using a specific character encoding, but it fails. When I convert istanbul, it converts it into ISTANBUL. However, uppercase "i" is "İ" in Turkish. Is there any solution to this? Demo:…
1
vote
1 answer

SQL- unreadable special characters

I don't have much experience with MS SQL server 2008 R2 but here is the issue if you would help me please: I have a table with a column/field (type : nvarchar) that stores text. The text is read from a text file and written to the database using…
1
vote
1 answer

Mysql search for entries that have turkish characters

I've seen Horde's address book application that delivers matches very nicely for searches that do not have the correct characters. For example if searching for 'Garcon' the entry with 'Garçon' is delivered. Or a search for 'Tugla' does also deliver…
adnc
  • 113
  • 2
1
vote
2 answers

Sorting strings with Turkish alphabetical order in Dart

I want to sort the Turkish name of countries in Dart, however I couldn't find a method to customize the alphabetical order during sorting operation like collations in Java. For example when I sort with a standard string compareTo method I get: var…
alierdogan7
  • 600
  • 7
  • 14
1
vote
0 answers

Flutter ESC-POS Utils Encode Turkish Characters(Invalid Character Problem)

I am developing a mobile app and that app prints invoices from bluetooth printer. So I imported "esc_pos_utils" and "bluetooth_thermal_printer" packages into pubspec.yaml file. App can print invoices from printer with some Turkish characters like…
1
vote
0 answers

How to set Turkish collation on postgres database using EF code first

my database records have strings with Turkish "İ" and I have the linq query like below: query=query.where(r=>r.User.FirstName.ToLower().Contains(fullName.ToLower()) in the database I have user with name of "İbrahim" searching about fullName=İbrahim…
1
vote
1 answer

Some letters cannot be detected while typing in tkinter's input widgets

Apparently some letters can't be typed in Tk's input widgets such as Tk.Text, Tk.Entry. When I try to type some Turkish letters, they can't be detected. But when I first type in Notepad then copy paste into the widgets or by using the insert…
duruburak
  • 181
  • 14
1
vote
0 answers

Turkish character problem in sql queries when windows service is running

When windows server 2019 comes to the desktop, when the application.exe is run, the sql connects and runs smoothly. But when I write this application as a service, I have a Turkish character problem when the application.exe runs. It shows letters…
FikretBa
  • 21
  • 4
1
vote
1 answer

Powershell replacing Unicode characters like "çöşİğü"

total coding noob here, trying to fix my script to help my job. Basically, I want to add "*" after "ç, ö, İ, ş, ü, , ı" Turkish letters in a text file. A quick example: "Andaç" should be replaced with "Andaç*" (It can be "Andac*" too, doesn't…
Cheetah92
  • 11
  • 2
1
vote
2 answers

Turkish characters are not shown properly on the HTML

I'm trying to print something to an HTML web page using a servlet code. I use UTF-8 encoding but Turkish characters are not shown adequately on the web page. How I define UTF-8 encoding: String htmlStart = "\n" + …
1
vote
2 answers

Oracle Client_charset

I am using 19c client and my database's NLS parameters like these: Also my clients specs are: While (Windows 10 x64) I am using sqplus, I get this(you can see my NLS_LANG environment variable on the top of command line): My 19c client home…
Umut TEKİN
  • 856
  • 1
  • 9
  • 19
1
vote
2 answers

Javascript Non UTF-8 Character Searching for Google Chrome Extension

Edit: I am creating a Chrome Extension and the files must be UTF-8 encoded. I use JQuery to get contents from page, and check that if that contains specific strings that contains Ö, ı and İ. However, because the Chrome forces files must be encoded…
Mustafa
  • 10,013
  • 10
  • 70
  • 116
1
vote
0 answers

How to solve itext pdf Turkish character problem in jpanel

I convert Jpanel to PDF using iText PDF, but certain special (Turkish) characters are not being displayed in the resulting PDF document. My code is shown below: Document document = new Document(); PdfWriter writer = PdfWriter.getInstance(document,…
Metin Bulak
  • 537
  • 4
  • 8
  • 30