<header>
  <h2 class="title">document.characterSet</h2>
  <p class="description">Демонстрація зміни кодування документа і візуального впливу на текст.</p>
</header>
<main>
  <div class="result">
    <p>Поточне кодування: <span id="currentEncoding"></span></p>
    <select id="encodingSelect">
      <option value="UTF-8">UTF-8</option>
      <option value="ISO-8859-1">ISO-8859-1</option>
    </select>
    <button id="changeEncoding">Змінити кодування</button>
    <p id="textExample">Приклад тексту: āčēģīķļņōŗšūž</p>
  </div>
</main>
body {
  font-size: 16px;
  line-height: 1.5;
  font-family: monospace;
}

header {
  background-color: #f1f1f1;
  margin-bottom: 25px;
  padding: 15px;
  -webkit-box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
  -moz-box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
  box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
}

header h2.title {
  padding-bottom: 15px;
  border-bottom: 1px solid #999;
}

header p.description {
  font-style: italic;
  color: #222;
}

.result {
  background-color: #f8f8f8;
  padding: 15px;
  -webkit-box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
  -moz-box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
  box-shadow: 0px 0px 3px 0px rgba(118, 118, 118, 1);
}

button {
  cursor: pointer;
  padding: 5px 15px;
  font-size: 1rem;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
}

button:hover {
  background-color: #45a049;
}

select {
  padding: 5px;
  margin-right: 10px;
  font-size: 1rem;
}
document.addEventListener('DOMContentLoaded', function() {
  var currentEncodingDisplay = document.getElementById('currentEncoding');
  var encodingSelect = document.getElementById('encodingSelect');
  var textExample = document.getElementById('textExample');

  // Відображення поточного кодування документа
  currentEncodingDisplay.textContent = document.characterSet;

  // Обробник зміни кодування
  document.getElementById('changeEncoding').addEventListener('click', function() {
    var selectedEncoding = encodingSelect.value;
    var metaCharset = document.querySelector('meta[charset]');
    
    if (!metaCharset) {
      metaCharset = document.createElement('meta');
      document.head.appendChild(metaCharset);
    }
    
    metaCharset.setAttribute('charset', selectedEncoding);
    document.characterSet = selectedEncoding; // Це не змінить кодування документа у браузері, але для демо вважаємо
    currentEncodingDisplay.textContent = selectedEncoding;
    
    // Демонстрація зміни тексту в залежності від кодування (просто для прикладу, реального ефекту не буде)
    if (selectedEncoding === "UTF-8") {
      textExample.textContent = "Приклад тексту: āčēģīķļņōŗšūž";
    } else if (selectedEncoding === "ISO-8859-1") {
      textExample.textContent = "Приклад тексту: acegiklnorsuz";
    }
  });
});

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.