With the following code you can retrieve the current page url in your Magento CMS block or page:

{{store url="*/*/*" _current="true" _use_rewrite="true"}}

As an alternative with the following PHP code, you can retrieve the current URL anywhere:

<?php echo Mage::helper('core/url')->getCurrentUrl() ?>