Taxonomy term breadcrumb; how?

You can use get_ancestors for this:

get_ancestors( $term_id, 'taxonomy' );

Of course this will only work on hierarchical elements. Additionally, this will only work reasonably well if only one term per level is assigned, take a look at my comment here and my answer here to get a little bit deeper insight into that.