Language Code List
Language Code | Languages |
---|---|
af | Afrikaans |
ar | Arabic |
bn | Bengali |
bs | Bosnian |
ca | Catalan |
cs | Czech |
cy | Welsh |
da | Danish |
de | German |
el | Greek |
en | English |
eo | Esperanto |
es | Spanish |
et | Estonian |
fi | Finnish |
fr | French |
gu | Gujarati |
hi | Hindi |
hr | Croatian |
hu | Hungarian |
hy | Armenian |
id | Indonesian |
is | Icelandic |
it | Italian |
ja | Japanese |
jw | Javanese |
km | Khmer |
kn | Kannada |
ko | Korean |
ko_f | Korean Female |
la | Latin |
lv | Latvian |
mk | Macedonian |
ml | Malayalam |
mr | Marathi |
my | Myanmar (Burmese) |
ne | Nepali |
nl | Dutch |
no | Norwegian |
pl | Polish |
pt | Portuguese |
ro | Romanian |
ru | Russian |
si | Sinhala |
sk | Slovak |
sq | Albanian |
sr | Serbian |
su | Sundanese |
sv | Swedish |
sw | Swahili |
ta | Tamil |
te | Telugu |
th | Thai |
tl | Filipino |
tr | Turkish |
uk | Ukrainian |
ur | Urdu |
vi | Vietnamese |
zh-CN | Chinese |
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://aivoice.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://aivoice.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" 버튼을 누르시면 말을 합니다.