If your data which is sortable and starts with your language spesific character, you should add this to your page to sort correctly.
For Example; If you sort by Type desc
Before;
Id | Type | Cool |
---|---|---|
2 | Ç | $1600 |
1 | A | $12 |
8 | T | $1 |
After;
Id | Type | Cool |
---|---|---|
8 | T | $1 |
2 | Ç | $1600 |
1 | A | $12 |
<script src="https://cdn.datatables.net/plug-ins/1.10.16/sorting/intl.js"></script>
<script type="text/javascript">
$.fn.dataTable.ext.order.intl("tr-TR");
</script>