unicode typography via css generated content
HTML
<h2>Stacked Letters via Generated Content <span class="widertext">jatin;</span></h2>
<h2>regular char <span><</span></h2>
CSS
span{display:block; text-align:left; font-size:75px; color:#008000; text-shadow:1px 1px 2px #000; font-weight:900}
.widertext{width:75px; height:75px; text-align:left; font-size:75px; position:relative}
.widertext:before,.widertext:after{color:#008000; font-size:10px; font-weight:50px; text-shadow:1px 1px 2px #000; position:absolute; width:75px; height:75px; top:0; z-index:100}
.widertext:before{content:"\003C"; left:-3px}
.widertext:after{content:"\003C"; right:-3px}