How to find out what handler is registered to a shortcode

The below WordPress snippet will give you a list of all the WordPress shortcodes you have available on your blog.

<?php
        global $shortcode_tags;
        echo '<pre>'; 
        print_r($shortcode_tags); 
        echo '</pre>';
?>

Also check the Codex for more information about shortcodes