I have faced issue that javascript function toLowerCase()
converts big " İ " letter differently than expected in Azeri language. Here is link screen shot of what I mean.
https://www.dropbox.com/s/k7w0vfla00ymp30/Screen%20Shot%202019-01-16%20at%204.16.10%20PM.png?dl=0
var str = "İsveç kronu";
var n = str.toLowerCase();
console.log(n);
Expected result is small " i " but it returns " i̇ " with two dots on top of it. But here also editor makes it not able to bee seen. Therefore I added result image.