$id = 8; // whatever you believe the term ID to be
$term = get_term_by( 'id', $id, Tribe__Events__Main::TAXONOMY );
// Test to see if you got an expected result before trying to display
if ( false !== $term ) echo $term->name;
Of course you could wrap this up in a function of your own for easier re-use 🙂