Show Widget anywhere in WordPress using Hook

/* Show Widget anywhere in WordPress using Hook */
 
function show_widget_anywhere_byhook() {

if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('SIDEBAR_ID_HERE') ) : endif;

}
add_action( 'wp_footer', 'show_widget_anywhere_byhook', 10 );