Beispiele von Codierungen im Alltag
- Morsealphabet
- Das Flaggenalphabet
- Braille-Schrift
Codierung für Webseiten
- HTML
- SVG
Folgende Datei wird als test.svg abgespeichert und im Browser betrachtet:
<?xml version="1.0"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> <svg version="1.1" xmlns="http://www.w3.org/2000/svg"> <!--HIER STEHT DAS EIGENTLICHE BILD--> <circle cx="120" cy="100" r="20" /> <circle cx="220" cy="100" r="20" /> <rect x="150" y="100" width="40" height="70" rx="5" ry="10" /> <ellipse cx="170" cy="200" rx="60" ry="10" /> <text> <tspan x="40" y="60">Hallo …</tspan> </text> <circle r="100" cx="170" cy="150" fill="rgba(220,220,220,0.5)" stroke="#fff" stroke-width="5" /> </svg>
Quelle: http://www.abenteuer-informatik.de/PDF/codierung1_a802.pdf