How To Show Shortcodes In WordPress Custom Fields?

in you template file or anywhere you want to display your shortcode in a custom field use this code

<?php echo do_shortcode( get_post_meta($post->ID, 'custom_field_name_here', true) ); ?>