I get ready with DataTables for make a nice table with JQuery and html.
But when query to my db it show me values like this in this characters cases (almost).
(Spanish letters) áéíóúÑ 
Any suggestions.
ADDED DATATABLE CODE USED:
var table = $('#example').DataTable({
  // Localization
  language : {
    emptyTable     : 'Nada para mostrar.',
    zeroRecords    : 'Nada coincide.',
    thousands      : '.',
    processing     : 'Cargando informacion...',
    loadingRecords : 'Cargando Informacion...',
    info           : ' _PAGE_ / _PAGES_',
    infoEmpty      : ' 0 / 0',
    infoFiltered   : '( _MAX_ )',
    infoPostFix    : '',
    lengthMenu     : 'Mostrando _MENU_',
    search         : 'Filtrar:',
    paginate       : {
      first    : 'Primero',
      last     : 'Ultimo',
      next     : 'Siguiente',
      previous : 'Previo'
    }
  }
});jquery
