To show the wc_price() without formatted HTML use the following function:
<?php
/**
* Returns the wc_price without html tags
*/
function th_wc_price_unformatted( $price = 0 ) {
return html_entity_decode( strip_tags( wc_price( $price ) ) );
}
?>