Displaying a WordPress widget by name

You would use the_widget

https://codex.wordpress.org/Function_Reference/the_widget

This template tag displays an arbitrary widget outside of a sidebar. It can be used anywhere in templates.

 <?php the_widget( $widget, $instance, $args ); ?>

e.g. <?php the_widget( 'WP_Widget_Archives' ); ?>