wordpress post not showing my “” text>?

You have to escape th < and the > with &lt; and &gt;, otherwise WordPress will remove the “unknown tags”.

You could also filter pre_kses to change the output before it gets stripped.

add_filter( 'pre_kses', function( $str ) {
    // find and escape < and > on specific positions, then
    return $str;
});