Magento – How to get current currency symbol in multi-currencies magento 2

currencymagento2multicurrencyprice

I am trying to show item price with symbol in override email template on order create, and my site have euro and $ both currency.

Is there any way to get current currency symbol, Please share if have.

Best Answer

Try to use

$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$priceHelper = $objectManager->get('Magento\Framework\Pricing\Helper\Data');
$priceHelper->currency($YOURPRICE, true, false);

Maybe it will help you.

Related Topic