1// GET a post or page with blocks or whatever and print it
2//on your single.php or other wp file
3$reuse_block = get_post( 123 ); // ID of the post
4$reuse_block_content = apply_filters( 'the_content', $reuse_block->post_content);
5echo $reuse_block_content;