Trying to make an exception to all characters that have been converted to regular letters.
txtValue.normalize('NFD').replace(/[\u0300-\u036f]/g, '');
As you can see, I replace all the special characters for normal letters, but now I would like to add an exception for the char "ç" and it's capital equivalent "Ç", which are u00e7 and u00c7 respectively.