I am using this feature.
<?php echo Mage::helper('core')->currency($_minimalPriceTax) ?>
I get this price - € 479.41, from here I need to hide €. How can i do this?
To get the price without the currency symbol,
Mage::getModel('directory/currency')->format( $yourprice, array('display'=>Zend_Currency::NO_SYMBOL), false );
Link to source