Get the Current Currency Symbol in Woocommerce :
get_woocommerce_currency_symbol();
<?php
$current_currency = get_woocommerce_currency_symbol();
if($current_currency =="Rs.") {
?>
<span>For Purchase more than Rs.450</span>
<?php } else { ?>
<span>For Purchase more than $250</span>
<?php } ?>