Tracking the name of a custom taxonomy

After messing with some code I found a solution:
just use this code and a lot if information will be showed. Within all this data you search for the categorie that is inside your taxonomy and you’ll see the taxonomy-> name.

// Show all data of all taxonomies
function print_tax_data(){
    $data = get_terms();
    print_r($data);
}
add_shortcode('tax_data', 'print_tax_data');