Magento 2: Get Currency Code, Currency Symbol & Currency Rate

This article shows how we can get our store’s currency code, currency symbol, and currency rate in Magento 2. We will be fetching all base, default and current currency code. We will also be fetching available currency codes and allowed currency codes.

Using Dependency Injection (DI)

Below is a block class of my custom module (Chapagain_HelloWorld). I have injected object of StoreManagerInterface & Currency in the constructor of my module’s block class.

app/code/Chapagain/HelloWorld/Block/HelloWorld.php


<?php
namespace Chapagain\HelloWorld\Block;
class HelloWorld extends \Magento\Framework\View\Element\Template
{
	protected $_storeManager;
	protected $_currency;
	
	public function __construct(
		\Magento\Backend\Block\Template\Context $context,		
		\Magento\Store\Model\StoreManagerInterface $storeManager,
		\Magento\Directory\Model\Currency $currency,		
		array $data = []
	)
	{		
		$this->_storeManager = $storeManager;
		$this->_currency = $currency;		
		parent::__construct($context, $data);
	}
	
		
	/**
     * Get store base currency code
     *
     * @return string
     */
	public function getBaseCurrencyCode()
	{
		return $this->_storeManager->getStore()->getBaseCurrencyCode();
	}
	
	 /**
     * Get current store currency code
     *
     * @return string
     */
	public function getCurrentCurrencyCode()
	{
		return $this->_storeManager->getStore()->getCurrentCurrencyCode();
	}	
	
	/**
     * Get default store currency code
     *
     * @return string
     */
	public function getDefaultCurrencyCode()
	{
		return $this->_storeManager->getStore()->getDefaultCurrencyCode();
	}
	
	/**
     * Get allowed store currency codes
     *
     * If base currency is not allowed in current website config scope,
     * then it can be disabled with $skipBaseNotAllowed
     *
     * @param bool $skipBaseNotAllowed
     * @return array
     */
	public function getAvailableCurrencyCodes($skipBaseNotAllowed = false)
	{
		return $this->_storeManager->getStore()->getAvailableCurrencyCodes($skipBaseNotAllowed);
	}
	
	/**
     * Get array of installed currencies for the scope
     *
     * @return array
     */
	public function getAllowedCurrencies()
	{
		return $this->_storeManager->getStore()->getAllowedCurrencies();
	}
	
	/**
     * Get current currency rate
     *
     * @return float
     */
	public function getCurrentCurrencyRate()
	{
		return $this->_storeManager->getStore()->getCurrentCurrencyRate();
	}
	
	/**
     * Get currency symbol for current locale and currency code
     *
     * @return string
     */	
	public function getCurrentCurrencySymbol()
	{
		return $this->_currency->getCurrencySymbol();
	}	
}
?>

See more functions in vendor/magento/module-store/Model/Store.php and vendor/magento/module-directory/Model/Currency.php.

Now, we print the currency rate, currency code, and currency symbol in our template (.phtml) file.


echo $block->getCurrentCurrencySymbol() . '<br />';
echo $block->getCurrentCurrencyCode() . '<br />';
echo $block->getBaseCurrencyCode() . '<br />';
echo $block->getDefaultCurrencyCode() . '<br />';
echo $block->getCurrentCurrencyRate() . '<br />';

print_r($block->getAvailableCurrencyCodes()) . '<br />';
print_r($block->getAllowedCurrencies()) . '<br />';

Using Object Manager


$objectManager =  \Magento\Framework\App\ObjectManager::getInstance();		

$appState = $objectManager->get('\Magento\Framework\App\State');
$appState->setAreaCode('frontend');

$storeManager = $objectManager->get('\Magento\Store\Model\StoreManagerInterface');
$currency = $objectManager->get('\Magento\Directory\Model\Currency');

$store = $storeManager->getStore();

echo $currency->getCurrencySymbol() . '<br />';
echo $store->getCurrentCurrencyCode() . '<br />';
echo $store->getBaseCurrencyCode() . '<br />';
echo $store->getDefaultCurrencyCode() . '<br />';
echo $store->getCurrentCurrencyRate() . '<br />';
 
print_r($store->getAvailableCurrencyCodes()) . '<br />';
print_r($store->getAllowedCurrencies()) . '<br />';

Hope this helps. Thanks.