0

bootstrap 4 character set utf8, ñ no working...

I need Latin characters like ñ to appear

Necesito que aparezcan la letra "Ñ" Pero obtengo esto. � �

Que etiqueta debo agregar o modificar.

<!doctype html>
<html lang="en">
  <head>
    <!-- Required meta tags -->
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

    <!-- Bootstrap CSS -->
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">

    <title>character UTF</title>
  </head>
  <body>


 <h1>  ñññññ</h1>
   
   
  </body>
</html>

No funciona.... He intentado de varias maneras y sigue sin funcionar pero he probado con 2 navegadores... Google chrome and Chromium edge

introducir la descripción de la imagen aquí

BetaM
  • 30,571
  • 7
  • 32
  • 50
Miguelon
  • 21
  • 1
  • 5
  • No working google chrome and chromium edge – Miguelon Jul 18 '20 at 23:34
  • Traduce tu título al español por favor – BetaM Jul 18 '20 at 23:35
  • 1
    Saludos. Prueba poniendo ` .` donde actualmente tienes ``; ahora bien; eso desde luego implicara que tu todo lo que allí se mostrara esta ya en codificación utf-8 para que se muestre correctamente. – RobertoLeOr Jul 18 '20 at 23:38
  • 1
    ¿Responde esto a tu pregunta? [¿Por que el Carácter inspector (�) aparece en algunos datos obtenidos de la Base de Datos?](https://es.stackoverflow.com/questions/59489/por-que-el-car%c3%a1cter-inspector-aparece-en-algunos-datos-obtenidos-de-la-base) – Marcos Jul 24 '20 at 18:22
  • Miguelon, es importante realizar las preguntas en el idioma oficial del sitio, saludos- – Jorgesys Jul 30 '20 at 02:01

1 Answers1

1
<!doctype html>
<html lang="en">
  <head>
    <!-- Required meta tags -->
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

    <!-- Bootstrap CSS -->
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">

    <title>character UTF</title>
  </head>
  <body>


 <h1>  ñññññ</h1>
   
   
  </body>

Proba ahora... el problema esta en el meta, aca la solución

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
BetaM
  • 30,571
  • 7
  • 32
  • 50