Transliterator

The below widget is a sample for the script:

  

Type your text here:

Result:

View the Project on GitHub Orif/Translit-UZ


Uzbek language has 3 active alphabets. Latin is an official alphabet in Uzbekistan, Cyrillic alphabet is using by Uzbeks of neighboring countries. Also Arabic alphabet is using by Uzbeks of Afghanistan. Hence transliteration over alphabets became actual. The transliteration technique used in this page does not pretend to be perfect, it has several issues with special words (especially with foreign words).

Although the result of transliteration is correct for the most of time, please check for correctness after use.

Arabic alphabet is not supported yet, hope it will be added soon.


Usage:
<input type="button" value="Convert" onclick="return convert();" />
Type your text here:
<textarea id="txtInput"></textarea>
Result:
<textarea id="txtOutput"></textarea>
<script type="text/javascript" src="javascripts/lct.min.js"></script>
<script type="text/javascript">
  function convert() {
    $('#txtOutput').val(t$.convert($('#txtInput').val()));
  }
</script>