RE:Donde hay una funcion y tabla de caracteres de
Hola...
EL Numero de la "" es el 34 y del ' es el 39,
te paso un ejemplo para mostrar los Caracteres UNICODE...
<script>
function Llenar_Tabla() {
var doc = document;
var Contador = 0;
doc.writeln ("<Tr>");
for (i=33;i<=104;i++) {
if (Contador > 5) {
doc.writeln ("</Tr><Tr>");
Contador = 0;
}
doc.writeln ("<Td align='center' style='border-bottom: 1px solid #00000; border-right: 1px solid #000000;'>");
doc.writeln ("No." + (i) + "-->");
doc.writeln ("\" + (i) + "; ");
doc.writeln ("</Td>");
Contador = Contador + 1;
}
doc.writeln ("</Tr>");
}
</script>
<body>
<Table Style='font-family=Arial' Bgcolor='#FFFFFF' BORDERCOLOR='#FFFFFF' border='1' CellSpacing=0 CellPadding=0 Style='Border: 1px solid #000000;'>
<Script Languaje="JavaScript">
Llenar_Tabla();
</Script>
</Table>
</body>
Suerte
ShFile (Mexico)