I have to get specific page content (like page(12))
I used that :
post_content; ?>
One liner:
<? if (have_posts()):while(have_posts()): the_post(); the_content(); endwhile; endif; ?>
I've answered my own question. Call apply_filter and there you go.
apply_filter
<?php $id=47; $post = get_post($id); $content = apply_filters('the_content', $post->post_content); echo $content; ?>