var str="aua"; document.write('original string: ' + str); document.write('<br/>'); str = str.replace(/[\u00E0\u00E1\u00E2\u00E3\u00E4\u00E5]/g,'a'); document.write('after replace: ' + str);