newString = 'resume'; newString.replaceAll('e', 'é'); // it returns the string 'résumé' // And you can use a regex to search like a needle in a haystack: 'resume'.replaceAll(RegExp(r'e'), ‘é’); // 'résumé'