How to display post_content from database in different on template page?

You can simply run it through the_content filter:

$filteredContent = apply_filters('the_content', $findContent);
echo $filteredContent;