Check if term is in a taxonomy?

You’re probably looking for term_exists():

<?php term_exists( $term, $taxonomy, $parent ); ?>

$term is required (obviously).

Both $taxonomy and $parent are optional, but if you want to determine if a specific taxonomy has a given term, just pass the registered taxonomy name via the $taxonomy parameter.