Note that there are some explanatory texts on larger screens.

plurals
  1. USİlhan ÇELİK
    primarykey
    data
    text
    plurals
    1. This table or related slice is empty.
    1. COI got tired of discussing on unrelated subjects combined into my problem. Look in this -> 90:Z, 122:z, 65:A, 97:a, 199:Ç, 231:ç, 208:Ğ, 240:ğ, 221:İ, 253:ı, 214:Ö, 246:ö, 222:Ş, 254:ş, 220:Ü, 252:ü. All chars should be in same order as they are in the alphabet. z CAN NOT be smaller than any other char/charcode in Turkish. If 'İ' is 221 then 'I' must be 220 and 'i' must be 253 (+ 0x20), 'ı' must be 252, 'ğ' must be 250 and 'Ğ' must be 218 where 'G' must be 217. If 'İ':221 is incorrect, then correct value should be assigned and all others ought to be fixed to match needs.
      singulars
    2. COSee my answer at http://stackoverflow.com/questions/14560531/os-x-10-6-8-cannot-input-non-ascii-utf-8-chars-e-g-a-a-o-in-python-intera/14763641#14763641. In utf-8, every language must have a full-range to define it's full-alphabet while keeping unicode untouched for the same display of the same chars. ((ch&0x20)==ch) or others are given to mean utf-8 MUST MATCH REQUREMENTS but it doesnt. I gave Arabic and Chinese as examples in many places. They work fine because they are not ASCII based alphabets and they have their own full-range. All ascii based, non-English alaphabets share same range.
      singulars
    3. COTurkish alphabet (UC(BIG) is ABCÇDEFGĞHIİJKLMNOÖPRSŞTUÜVYZ and anybody must be able to convert it to lowercase like this (lc = LC&0x20;) or be able to test if((ch&0x20)==ch) then ch is lowercase... Similarly, if(ch <= Turkish(z) && ch >= Turkish(A)) then ch is a Turkish comparable/printable letter... As current Unicode definitions for Turkis don't match this criteria algorithmic conversions/encodings do not work correctly. To work them we need lots of extra code which leads us unpredictable results in case of any carelessness and it is obviously a loss of time and effort. .....
      singulars
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload