JSFiddle - React, Tailwind, and code Playground
HTML
<table>
<tr>
<th>CĂłdigo</th>
<th>Nome</th>
</tr>
<tr>
<td>001</td>
<td>Monotauro (001)</td>
</tr>
<tr>
<td>001</td>
<td>Manaus (001)</td>
</tr>
</table>
JavaScript
$(function(){
$("td:contains('(001)')").css("color","red");
});