OK I figured out what caused it but not why. I removed « and » from Previous and Next and the characters are gone.
----------------------------------------------
I'm sorry I was headed out the door and in a bit of a hurry when I posted this topic.
I can't figure out what is causing this character
 to appear in in the pagination.

Here is a the url to the page in question. (
Click Here)
Here is the standard pagination code, I also tried other pagination codes and got the same results.
<!-- Start pagination -->
<style type="text/css">
.pagination{
padding: 2px;
}
.pagination ul{
margin: 0;
padding: 0;
text-align: left; /*Set to "right" to right align pagination interface*/
font-size: 16px;
}
.pagination li{
list-style-type: none;
display: inline;
padding-bottom: 1px;
}
.pagination a, .pagination a:visited{
padding: 0 5px;
border: 1px solid #8D1F6E;
text-decoration: none;
color: #8D1F6E;
}
.pagination a:hover, .pagination a:active{
border: 1px solid #8D1F6E;
color: #000;
background-color: #E73EB0;
}
.pagination a.currentpage{
background-color: #8D1F6E;
color: #FFF !important;
border-color: #8D1F6E;
font-weight: bold;
cursor: default;
}
.pagination a.disablelink, .pagination a.disablelink:hover{
background-color: white;
cursor: default;
color: #929292;
border-color: #929292;
font-weight: normal !important;
}
.pagination a.prevnext{
font-weight: bold;
}
</style>
<div class="pagination">
<ul>
<li><a href="#" class="prevnext disablelink">« Previous</a></li>
<li><a href="#" class="currentpage">1</a></li>
<li><a href="#">2</a></li>
<li><a href="#">3</a></li>
<li><a href="#" class="prevnext">Next »</a></li>
</ul>
</div>
<!-- End pagination -->