How to show SKU value in Magneto?

This is very simple. Please add below code.

<?php
$_productCollection=$this->getLoadedProductCollection();
$_helper = $this->helper(‘catalog/output’);
?>

<?php echo $this->__(‘ Item Number: %s’, $this->escapeHtml($_product->getSku()));?>

Hope it will work.