aboutsummaryrefslogtreecommitdiff
path: root/files/es/glossary/character_encoding
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:41:45 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:41:45 -0500
commit1109132f09d75da9a28b649c7677bb6ce07c40c0 (patch)
tree0dd8b084480983cf9f9680e8aedb92782a921b13 /files/es/glossary/character_encoding
parent4b1a9203c547c019fc5398082ae19a3f3d4c3efe (diff)
downloadtranslated-content-1109132f09d75da9a28b649c7677bb6ce07c40c0.tar.gz
translated-content-1109132f09d75da9a28b649c7677bb6ce07c40c0.tar.bz2
translated-content-1109132f09d75da9a28b649c7677bb6ce07c40c0.zip
initial commit
Diffstat (limited to 'files/es/glossary/character_encoding')
-rw-r--r--files/es/glossary/character_encoding/index.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/files/es/glossary/character_encoding/index.html b/files/es/glossary/character_encoding/index.html
new file mode 100644
index 0000000000..ae1d0df389
--- /dev/null
+++ b/files/es/glossary/character_encoding/index.html
@@ -0,0 +1,28 @@
+---
+title: Codificación de caracteres
+slug: Glossary/character_encoding
+tags:
+ - Caracter
+ - Caractères
+ - Codificación
+ - Glosario
+translation_of: Glossary/character_encoding
+---
+<p>Una codificación define cómo se traducen los bytes a texto y viceversa. Una secuencia de bytes se pueden interpretar de diferentes formas. Eligiendo una codificación en particular (como UTF-8), decimos como la secuencia de bytes debe ser interpretada.</p>
+
+<p>Por ejemplo, en HTML normalmente especificamos que la codificiación va a ser UTF-8 con la siguiente linea:</p>
+
+<div class="example">
+<pre class="brush: html"><code>&lt;meta charset="utf-8"&gt;</code></pre>
+
+<p>Con esto te aseguras de que usando caracteres propios de cualquier lenguaje humano en tu documento HTML, se mostrarán de forma legible. </p>
+</div>
+
+<h2 id="Saber_más">Saber más</h2>
+
+<h3 id="Conocimientos_generales">Conocimientos generales</h3>
+
+<ul>
+ <li><a href="https://www.w3.org/International/articles/definitions-characters/">Character encoding on W3C</a></li>
+ <li>{{Interwiki("wikipedia", "Codificación_de_caracteres", "Codificación de caracteres")}} en Wikipedia</li>
+</ul>