// Currency Code for Bangladesh is "BDT" Mage::app()->getStore()->getCurrentCurrencyCode();
Source : http://harisur.net/how-to-get-the-currency-code-for-current-store-in-magento
// Currency Code for Bangladesh is "BDT" Mage::app()->getStore()->getCurrentCurrencyCode();
// Currency Symbol for Bangladesh is "Tk" Mage::app()->getLocale()->currency(Mage::app()->getStore()->getCurrentCurrencyCode())->getSymbol();
echo $_product->getPrice();
// will display : 123.4567
echo Mage::helper('core')->currency($_product->getPrice());
// will display : BDT123.46 [BDT, currency code of Bangladesh]