How to get the language locale

In Joomla you extensively work with Locale language string such as en-GB. To retrieve the current language Locale just use the following code in your Joomla extension:

<?php
$lang =& JFactory::getLanguage();
echo $lang->getTag();
?>