Language Code List


Language Code Languages
afAfrikaans
arArabic
bnBengali
bsBosnian
caCatalan
csCzech
cyWelsh
daDanish
deGerman
elGreek
enEnglish
eoEsperanto
esSpanish
etEstonian
fiFinnish
frFrench
guGujarati
hiHindi
hrCroatian
huHungarian
hyArmenian
idIndonesian
isIcelandic
itItalian
jaJapanese
jwJavanese
kmKhmer
knKannada
koKorean
ko_fKorean Female
laLatin
lvLatvian
mkMacedonian
mlMalayalam
mrMarathi
myMyanmar (Burmese)
neNepali
nlDutch
noNorwegian
plPolish
ptPortuguese
roRomanian
ruRussian
siSinhala
skSlovak
sqAlbanian
srSerbian
suSundanese
svSwedish
swSwahili
taTamil
teTelugu
thThai
tlFilipino
trTurkish
ukUkrainian
urUrdu
viVietnamese
zh-CNChinese

  Simple Code (English)


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://voice.luzspat.com/js/cloudvoice.js"></script>
<script>
$(document).ready(function(){
  $("#speak").click(function(){
    talk("en","hi there, nice to meet you");    
  });
});
</script>
</head>
<body>
<p>If you click on the "SPEAK" button, I will speak.</p>
<button id="speak">SPEAK</button>
</body>
</html>
 
cs



  Simple Result (English)

If you click on the "SPEAK" button, I will speak.


  Simple Code (Korean Female)


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://voice.luzspat.com/js/cloudvoice.js"></script>
<script>
$(document).ready(function(){
  $("#speak").click(function(){
    talk("ko","안녕하세요. 만나서 반갑습니다.");
  });
});
</script>
</head>
<body>
<p>"SPEAK" 버튼을 누르시면 말을 합니다.</p>
<button id="speak">SPEAK</button>
</body>
</html>
cs



  Simple Result (Korean Female)

"SPEAK" 버튼을 누르시면 말을 합니다.