var str = 'Ãîζ¿ÎÌÃ-WWW.miaov.com'; str.charAt(1); // 'ζ' str.charCodeAt(1); // 21619 String.fromCharCode(22937, 21619); // 'Ãîζ' str.indexOf('m', 4); // 9 str.lastIndexOf('o'); // 16 '1000' < '2' // true '1000' > 2 // true str.substring(0, 4); // 'Ãîζ¿ÎÌÃ' str.slice(-3); // 'com' str.toUpperCase(); // 'Ãîζ¿ÎÌÃ-WWW.MIAOV.COM' str.toLowerCase(); // 'Ãîζ¿ÎÌÃ-www.miaov.com' str.split('.', 2); // [ 'Ãîζ¿ÎÌÃ-WWW', 'miaov' ] var arr = [ 'www', 'miaov', 'com' ]; arr.join('aaa'); // 'www.miaov.com'