How do I effectively show success/failure without using green/red colors?

I have to display a table and the last column of the table shows success/failure of that row.

I cannot use green/red as it represents the result of the subsequent operation a success now does not mean it will be a success in the subsequent operation.

Is there any other color pair that inherently signifies true/false? If not, is there any other way (other than color coding) to effectively convey the meaning?

EDIT: The column will have strings like:

code: 1xx
message: <some_string_here>

There are some success codes, some failure codes.

Assume 100 to 110 are success codes and 111 to 199 are failure codes.

Now, if there are over 50 rows, it is not easy to quickly filter out success/failure rows.