1972 lines
95 KiB
HTML
1972 lines
95 KiB
HTML
<!DOCTYPE html>
|
||
<html>
|
||
<head>
|
||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||
<title>ACP Keyboard</title>
|
||
<meta name="viewport" content="width=device-width" />
|
||
<style>
|
||
body {
|
||
font-family: sans-serif;
|
||
width: 900px;
|
||
text-align: left;
|
||
}
|
||
table, thead, thead tr {
|
||
border-collapse: collapse;
|
||
border: 3px solid black;
|
||
}
|
||
tbody {
|
||
border-top: 1px solid black;
|
||
border-bottom: 1px solid black;
|
||
}
|
||
th, td {
|
||
border-left: 1px solid black;
|
||
border-right: 1px solid black;
|
||
padding: 0.5em;
|
||
}
|
||
.level-group-left {
|
||
border-left: 3px solid black;
|
||
}
|
||
.level-group-right {
|
||
border-right: 3px solid black;
|
||
}
|
||
.deadkey {
|
||
background: lightgrey;
|
||
}
|
||
.key-character {
|
||
background: #e0ffff;
|
||
}
|
||
.codepoint {
|
||
font-family: monospace;
|
||
font-size: larger;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<h1>ACP Keyboard v4.1.0</h1>
|
||
<ol>
|
||
<li><a href="#rationale">Rationale</a></li>
|
||
<li><a href="#images">Images</a></li>
|
||
<ol>
|
||
<li><a href="#image-iso">ISO</a></li>
|
||
<li><a href="#image-ansi">ANSI</a></li>
|
||
</ol>
|
||
<li><a href="#key-table">Key table</a></li>
|
||
<li><a href="#dead-key-table">Dead key table</a></li>
|
||
<li><a href="#code-reference-table">Code reference table</a></li>
|
||
<ol>
|
||
<li><a href="#dead-keys">Dead keys</a></li>
|
||
<li><a href="#unicode">Unicode</a></li>
|
||
</ol>
|
||
</ol>
|
||
<h2 id="rationale">Rationale</h2>
|
||
|
||
<p>There are thousands of keyboard layouts around. Why make a new one?
|
||
Simply: none of them worked for me. They either had too many symbols,
|
||
not enough symbols, or the layout was wrong. <a
|
||
href="https://bepo.fr/wiki/Accueil">BÉPO</a> came the closest to having the
|
||
main symbols I wanted, but I couldn’t get over the non-QWERTY layout; and
|
||
the <a href="https://kbdlayout.info/kbdcan">Canadian Multilingual
|
||
Standard</a> layout had the symbols I wanted, but they were spread across
|
||
six levels (AltGr and Right Ctrl both act as level selectors).
|
||
|
||
<p>So I made my own. There were a number of requirements for me:</p>
|
||
|
||
<ol>
|
||
<li>The most common English symbols I need should be available.</li>
|
||
<li>No more than four levels (normal; Shift; AltGr; and Shift+AltGr).</li>
|
||
<li>Keys should be grouped sensibly: the degree sign in °C is preceded by
|
||
a narrow non-breaking space, so they should be on the same level.</li>
|
||
<li>The main layout should be based on the US ANSI layout, but it should
|
||
also support an ISO layout with one key extra.</li>
|
||
<li>It should be able to be used without Administrative permissions. This
|
||
led me to AutoHotKey on Windows, and a <tt>$HOME</tt>-based XKB layout
|
||
on Linux.</li>
|
||
<li>There should be support for French, German, and Spanish—as there are
|
||
a number of loanwords from these languages into English—but this should
|
||
not come at the cost of ease of use for English.</li>
|
||
<li>The base layers (Layer 1 and Layer 2) should not be changed.
|
||
AutoHotKey has an issue with Command Prompt in Remote Desktop sessions,
|
||
so changing the base layers stops the keys from working. It also means
|
||
there is no training period for this layout.</li>
|
||
</ol>
|
||
|
||
<h2 id="images">Images</h2>
|
||
<h3 id="image-iso">ISO</h3>
|
||
<svg viewBox="0 0 1200 400" width="900" height="300" role="img">
|
||
<title>ISO keyboard layout</title>
|
||
<defs>
|
||
<style>
|
||
rect, .iso-return {
|
||
fill: transparent;
|
||
stroke: black;
|
||
stroke-width: 3;
|
||
}
|
||
text {
|
||
font-family: sans-serif;
|
||
font-size: 30px;
|
||
vertical-align: top;
|
||
}
|
||
.layer1 {
|
||
dominant-baseline: auto;
|
||
text-anchor: start;
|
||
}
|
||
.layer2 {
|
||
dominant-baseline: hanging;
|
||
text-anchor: start;
|
||
}
|
||
.layer3 {
|
||
dominant-baseline: auto;
|
||
text-anchor: end;
|
||
}
|
||
.layer4 {
|
||
dominant-baseline: hanging;
|
||
text-anchor: end;
|
||
}
|
||
.function {
|
||
font-size: 20px;
|
||
}
|
||
.deadkey {
|
||
fill: red;
|
||
}
|
||
</style>
|
||
</defs>
|
||
|
||
<!-- Keyboard outline -->
|
||
<rect x="0" y="0" width="1200" height="400" />
|
||
|
||
<!-- First row -->
|
||
|
||
<rect x="0" y="0" width="80" height="80" />
|
||
<text x="10" y="70" class="layer1">`</text>
|
||
<text x="10" y="10" class="layer2">~</text>
|
||
<text x="70" y="70" class="layer3">±</text>
|
||
<text x="70" y="10" class="layer4"></text>
|
||
|
||
<rect x="80" y="0" width="80" height="80" />
|
||
<text x="90" y="70" class="layer1">1</text>
|
||
<text x="90" y="10" class="layer2">!</text>
|
||
<text x="150" y="70" class="layer3">!</text>
|
||
<text x="150" y="10" class="layer4">¡</text>
|
||
|
||
<rect x="160" y="0" width="80" height="80" />
|
||
<text x="170" y="70" class="layer1">2</text>
|
||
<text x="170" y="10" class="layer2">@</text>
|
||
<text x="230" y="70" class="layer3">‰</text>
|
||
<text x="230" y="10" class="layer4">«</text>
|
||
|
||
<rect x="240" y="0" width="80" height="80" />
|
||
<text x="250" y="70" class="layer1">3</text>
|
||
<text x="250" y="10" class="layer2">#</text>
|
||
<text x="310" y="70" class="layer3">£</text>
|
||
<text x="310" y="10" class="layer4">»</text>
|
||
|
||
<rect x="320" y="0" width="80" height="80" />
|
||
<text x="330" y="70" class="layer1">4</text>
|
||
<text x="330" y="10" class="layer2">$</text>
|
||
<text x="390" y="70" class="layer3">¢</text>
|
||
<text x="390" y="10" class="layer4">‹</text>
|
||
|
||
<rect x="400" y="0" width="80" height="80" />
|
||
<text x="410" y="70" class="layer1">5</text>
|
||
<text x="410" y="10" class="layer2">%</text>
|
||
<text x="470" y="70" class="layer3">€</text>
|
||
<text x="470" y="10" class="layer4">›</text>
|
||
|
||
<rect x="480" y="0" width="80" height="80" />
|
||
<text x="490" y="70" class="layer1">6</text>
|
||
<text x="490" y="10" class="layer2">^</text>
|
||
<text x="550" y="70" class="layer3">√</text>
|
||
<text x="550" y="10" class="layer4">✓</text>
|
||
|
||
<rect x="560" y="0" width="80" height="80" />
|
||
<text x="570" y="70" class="layer1">7</text>
|
||
<text x="570" y="10" class="layer2">&</text>
|
||
<text x="630" y="70" class="layer3">⁊</text>
|
||
<text x="630" y="10" class="layer4">✗</text>
|
||
|
||
<rect x="640" y="0" width="80" height="80" />
|
||
<text x="650" y="70" class="layer1">8</text>
|
||
<text x="650" y="10" class="layer2">*</text>
|
||
<text x="710" y="70" class="layer3">°</text>
|
||
<text x="710" y="10" class="layer4">•</text>
|
||
|
||
<rect x="720" y="0" width="80" height="80" />
|
||
<text x="730" y="70" class="layer1">9</text>
|
||
<text x="730" y="10" class="layer2">(</text>
|
||
<text x="790" y="70" class="layer3">ª</text>
|
||
<text x="790" y="10" class="layer4"></text>
|
||
|
||
<rect x="800" y="0" width="80" height="80" />
|
||
<text x="810" y="70" class="layer1">0</text>
|
||
<text x="810" y="10" class="layer2">)</text>
|
||
<text x="870" y="70" class="layer3">º</text>
|
||
<text x="870" y="10" class="layer4">×</text>
|
||
|
||
<rect x="880" y="0" width="80" height="80" />
|
||
<text x="890" y="70" class="layer1">-</text>
|
||
<text x="890" y="10" class="layer2">_</text>
|
||
<text x="950" y="70" class="layer3">−</text>
|
||
<text x="950" y="10" class="layer4">÷</text>
|
||
|
||
<rect x="960" y="0" width="80" height="80" />
|
||
<text x="970" y="70" class="layer1">=</text>
|
||
<text x="970" y="10" class="layer2">+</text>
|
||
<text x="1030" y="70" class="layer3">≈</text>
|
||
<text x="1030" y="10" class="layer4">≠</text>
|
||
|
||
<rect x="1040" y="0" width="160" height="80" />
|
||
<text x="1050" y="10" class="layer2 function">Backspace</text>
|
||
|
||
<!-- Second row -->
|
||
|
||
<rect x="0" y="80" width="120" height="80" />
|
||
<text x="10" y="90" class="layer2 function">Tab</text>
|
||
|
||
<rect x="120" y="80" width="80" height="80" />
|
||
<text x="130" y="150" class="layer1">q</text>
|
||
<text x="130" y="90" class="layer2">Q</text>
|
||
<text x="190" y="150" class="layer3">à</text>
|
||
<text x="190" y="90" class="layer4">À</text>
|
||
|
||
<rect x="200" y="80" width="80" height="80" />
|
||
<text x="210" y="150" class="layer1">w</text>
|
||
<text x="210" y="90" class="layer2">W</text>
|
||
<text x="270" y="150" class="layer3">é</text>
|
||
<text x="270" y="90" class="layer4">É</text>
|
||
|
||
<rect x="280" y="80" width="80" height="80" />
|
||
<text x="290" y="150" class="layer1">e</text>
|
||
<text x="290" y="90" class="layer2">E</text>
|
||
<text x="350" y="150" class="layer3">ë</text>
|
||
<text x="350" y="90" class="layer4">Ë</text>
|
||
|
||
<rect x="360" y="80" width="80" height="80" />
|
||
<text x="370" y="150" class="layer1">r</text>
|
||
<text x="370" y="90" class="layer2">R</text>
|
||
<text x="430" y="150" class="layer3">è</text>
|
||
<text x="430" y="90" class="layer4">È</text>
|
||
|
||
<rect x="440" y="80" width="80" height="80" />
|
||
<text x="450" y="150" class="layer1">t</text>
|
||
<text x="450" y="90" class="layer2">T</text>
|
||
<text x="510" y="150" class="layer3">®</text>
|
||
<text x="510" y="90" class="layer4">©</text>
|
||
|
||
<rect x="520" y="80" width="80" height="80" />
|
||
<text x="530" y="150" class="layer1">y</text>
|
||
<text x="530" y="90" class="layer2">Y</text>
|
||
<text x="590" y="150" class="layer3">û</text>
|
||
<text x="590" y="90" class="layer4">Û</text>
|
||
|
||
<rect x="600" y="80" width="80" height="80" />
|
||
<text x="610" y="150" class="layer1">u</text>
|
||
<text x="610" y="90" class="layer2">U</text>
|
||
<text x="670" y="150" class="layer3">ü</text>
|
||
<text x="670" y="90" class="layer4">Ü</text>
|
||
|
||
<rect x="680" y="80" width="80" height="80" />
|
||
<text x="690" y="150" class="layer1">i</text>
|
||
<text x="690" y="90" class="layer2">I</text>
|
||
<text x="750" y="150" class="layer3">ï</text>
|
||
<text x="750" y="90" class="layer4">Ï</text>
|
||
|
||
<rect x="760" y="80" width="80" height="80" />
|
||
<text x="770" y="150" class="layer1">o</text>
|
||
<text x="770" y="90" class="layer2">O</text>
|
||
<text x="830" y="150" class="layer3">ö</text>
|
||
<text x="830" y="90" class="layer4">Ö</text>
|
||
|
||
<rect x="840" y="80" width="80" height="80" />
|
||
<text x="850" y="150" class="layer1">p</text>
|
||
<text x="850" y="90" class="layer2">P</text>
|
||
<text x="910" y="150" class="layer3">¶</text>
|
||
<text x="910" y="90" class="layer4">§</text>
|
||
|
||
<rect x="920" y="80" width="80" height="80" />
|
||
<text x="930" y="150" class="layer1">[</text>
|
||
<text x="930" y="90" class="layer2">{</text>
|
||
<text x="990" y="150" class="layer3">‘</text>
|
||
<text x="990" y="90" class="layer4">“</text>
|
||
|
||
<rect x="1000" y="80" width="80" height="80" />
|
||
<text x="1010" y="150" class="layer1">]</text>
|
||
<text x="1010" y="90" class="layer2">}</text>
|
||
<text x="1070" y="150" class="layer3">’</text>
|
||
<text x="1070" y="90" class="layer4">”</text>
|
||
|
||
<!-- Third row -->
|
||
|
||
<rect x="0" y="160" width="140" height="80" />
|
||
<text x="10" y="170" class="layer2 function">Caps Lock</text>
|
||
|
||
<rect x="140" y="160" width="80" height="80" />
|
||
<text x="150" y="230" class="layer1">a</text>
|
||
<text x="150" y="170" class="layer2">A</text>
|
||
<text x="210" y="230" class="layer3">ä</text>
|
||
<text x="210" y="170" class="layer4">Ä</text>
|
||
|
||
<rect x="220" y="160" width="80" height="80" />
|
||
<text x="230" y="230" class="layer1">s</text>
|
||
<text x="230" y="170" class="layer2">S</text>
|
||
<text x="290" y="230" class="layer3">ß</text>
|
||
<text x="290" y="170" class="layer4">ẞ</text>
|
||
|
||
<rect x="300" y="160" width="80" height="80" />
|
||
<text x="310" y="230" class="layer1">d</text>
|
||
<text x="310" y="170" class="layer2">D</text>
|
||
<text x="370" y="230" class="layer3 deadkey">◌̈</text>
|
||
<text x="370" y="170" class="layer4">″</text>
|
||
|
||
<rect x="380" y="160" width="80" height="80" />
|
||
<text x="390" y="230" class="layer1">f</text>
|
||
<text x="390" y="170" class="layer2">F</text>
|
||
<text x="450" y="230" class="layer3 deadkey">◌́</text>
|
||
<text x="450" y="170" class="layer4">′</text>
|
||
|
||
<rect x="460" y="160" width="80" height="80" />
|
||
<text x="470" y="230" class="layer1">g</text>
|
||
<text x="470" y="170" class="layer2">G</text>
|
||
<text x="530" y="230" class="layer3 deadkey">◌̄</text>
|
||
<text x="530" y="170" class="layer4"></text>
|
||
|
||
<rect x="540" y="160" width="80" height="80" />
|
||
<text x="550" y="230" class="layer1">h</text>
|
||
<text x="550" y="170" class="layer2">H</text>
|
||
<text x="610" y="230" class="layer3"></text>
|
||
<text x="610" y="170" class="layer4"></text>
|
||
|
||
<rect x="620" y="160" width="80" height="80" />
|
||
<text x="630" y="230" class="layer1">j</text>
|
||
<text x="630" y="170" class="layer2">J</text>
|
||
<text x="690" y="230" class="layer3 deadkey">◌̀</text>
|
||
<text x="690" y="170" class="layer4"></text>
|
||
|
||
<rect x="700" y="160" width="80" height="80" />
|
||
<text x="710" y="230" class="layer1">k</text>
|
||
<text x="710" y="170" class="layer2">K</text>
|
||
<text x="770" y="230" class="layer3 deadkey">◌̂</text>
|
||
<text x="770" y="170" class="layer4"></text>
|
||
|
||
<rect x="780" y="160" width="80" height="80" />
|
||
<text x="790" y="230" class="layer1">l</text>
|
||
<text x="790" y="170" class="layer2">L</text>
|
||
<text x="850" y="230" class="layer3">ô</text>
|
||
<text x="850" y="170" class="layer4">Ô</text>
|
||
|
||
<rect x="860" y="160" width="80" height="80" />
|
||
<text x="870" y="230" class="layer1">;</text>
|
||
<text x="870" y="170" class="layer2">:</text>
|
||
<text x="930" y="230" class="layer3">;</text>
|
||
<text x="930" y="170" class="layer4">:</text>
|
||
|
||
<rect x="940" y="160" width="80" height="80" />
|
||
<text x="950" y="230" class="layer1">'</text>
|
||
<text x="950" y="170" class="layer2">"</text>
|
||
<text x="1010" y="230" class="layer3">‚</text>
|
||
<text x="1010" y="170" class="layer4">„</text>
|
||
|
||
<rect x="1020" y="160" width="80" height="80" />
|
||
<text x="1030" y="230" class="layer1">\</text>
|
||
<text x="1030" y="170" class="layer2">|</text>
|
||
<text x="1090" y="230" class="layer3"></text>
|
||
<text x="1090" y="170" class="layer4"></text>
|
||
|
||
<!-- Fourth row -->
|
||
|
||
<rect x="0" y="240" width="100" height="80" />
|
||
<text x="10" y="250" class="layer2 function">Shift</text>
|
||
|
||
<rect x="100" y="240" width="80" height="80" />
|
||
<text x="110" y="310" class="layer1">\</text>
|
||
<text x="110" y="250" class="layer2">|</text>
|
||
<text x="170" y="310" class="layer3">ê</text>
|
||
<text x="170" y="250" class="layer4">Ê</text>
|
||
|
||
<rect x="180" y="240" width="80" height="80" />
|
||
<text x="190" y="310" class="layer1">z</text>
|
||
<text x="190" y="250" class="layer2">Z</text>
|
||
<text x="250" y="310" class="layer3">æ</text>
|
||
<text x="250" y="250" class="layer4">Æ</text>
|
||
|
||
<rect x="260" y="240" width="80" height="80" />
|
||
<text x="270" y="310" class="layer1">x</text>
|
||
<text x="270" y="250" class="layer2">X</text>
|
||
<text x="330" y="310" class="layer3">œ</text>
|
||
<text x="330" y="250" class="layer4">Œ</text>
|
||
|
||
<rect x="340" y="240" width="80" height="80" />
|
||
<text x="350" y="310" class="layer1">c</text>
|
||
<text x="350" y="250" class="layer2">C</text>
|
||
<text x="410" y="310" class="layer3">ç</text>
|
||
<text x="410" y="250" class="layer4">Ç</text>
|
||
|
||
<rect x="420" y="240" width="80" height="80" />
|
||
<text x="430" y="310" class="layer1">v</text>
|
||
<text x="430" y="250" class="layer2">V</text>
|
||
<text x="490" y="310" class="layer3">—</text>
|
||
<text x="490" y="250" class="layer4"></text>
|
||
|
||
<rect x="500" y="240" width="80" height="80" />
|
||
<text x="510" y="310" class="layer1">b</text>
|
||
<text x="510" y="250" class="layer2">B</text>
|
||
<text x="570" y="310" class="layer3">–</text>
|
||
<text x="570" y="250" class="layer4"></text>
|
||
|
||
<rect x="580" y="240" width="80" height="80" />
|
||
<text x="590" y="310" class="layer1">n</text>
|
||
<text x="590" y="250" class="layer2">N</text>
|
||
<text x="650" y="310" class="layer3">ñ</text>
|
||
<text x="650" y="250" class="layer4">Ñ</text>
|
||
|
||
<rect x="660" y="240" width="80" height="80" />
|
||
<text x="670" y="310" class="layer1">m</text>
|
||
<text x="670" y="250" class="layer2">M</text>
|
||
<text x="730" y="310" class="layer3">µ</text>
|
||
<text x="730" y="250" class="layer4">™</text>
|
||
|
||
<rect x="740" y="240" width="80" height="80" />
|
||
<text x="750" y="310" class="layer1">,</text>
|
||
<text x="750" y="250" class="layer2"><</text>
|
||
<text x="810" y="310" class="layer3">…</text>
|
||
<text x="810" y="250" class="layer4">≤</text>
|
||
|
||
<rect x="820" y="240" width="80" height="80" />
|
||
<text x="830" y="310" class="layer1">.</text>
|
||
<text x="830" y="250" class="layer2">></text>
|
||
<text x="890" y="310" class="layer3">⋅</text>
|
||
<text x="890" y="250" class="layer4">≥</text>
|
||
|
||
<rect x="900" y="240" width="80" height="80" />
|
||
<text x="910" y="310" class="layer1">/</text>
|
||
<text x="910" y="250" class="layer2">?</text>
|
||
<text x="970" y="310" class="layer3">?</text>
|
||
<text x="970" y="250" class="layer4">¿</text>
|
||
|
||
<rect x="980" y="240" width="220" height="80" />
|
||
<text x="990" y="250" class="layer2 function">Shift</text>
|
||
|
||
<!-- Fifth row -->
|
||
|
||
<rect x="0" y="320" width="120" height="80" />
|
||
<text x="10" y="350" class="function">Ctrl</text>
|
||
|
||
<rect x="120" y="320" width="100" height="80" />
|
||
<text x="130" y="350" class="function">Win</text>
|
||
|
||
<rect x="220" y="320" width="100" height="80" />
|
||
<text x="230" y="350" class="function">Alt</text>
|
||
|
||
<rect x="320" y="320" width="460" height="80" />
|
||
<text x="330" y="390" class="layer1 function">Space</text>
|
||
<text x="330" y="330" class="layer2 function">Space</text>
|
||
<text x="770" y="390" class="layer3 function">Narrow non-breaking space</text>
|
||
<text x="770" y="330" class="layer4 function">Non-breaking space</text>
|
||
|
||
<rect x="780" y="320" width="100" height="80" />
|
||
<text x="790" y="350" class="function">AltGr</text>
|
||
|
||
<rect x="880" y="320" width="100" height="80" />
|
||
<text x="890" y="350" class="function">Win</text>
|
||
|
||
<rect x="980" y="320" width="100" height="80" />
|
||
<text x="990" y="350" class="function">Menu</text>
|
||
|
||
<rect x="1080" y="320" width="120" height="80" />
|
||
<text x="1090" y="350" class="function">Ctrl</text>
|
||
|
||
<!-- Return -->
|
||
|
||
<polygon points="1080, 80
|
||
1200, 80
|
||
1200, 240
|
||
1100, 240
|
||
1100, 160
|
||
1080, 160" class="iso-return" />
|
||
<text x="1090" y="110" class="function">Return</text>
|
||
|
||
</svg>
|
||
<h3 id="image-ansi">ANSI</h3>
|
||
<svg viewBox="0 0 1200 400" width="900" height="300" role="img">
|
||
<title>ANSI keyboard layout</title>
|
||
<defs>
|
||
<style>
|
||
rect, .iso-return {
|
||
fill: transparent;
|
||
stroke: black;
|
||
stroke-width: 3;
|
||
}
|
||
text {
|
||
font-family: sans-serif;
|
||
font-size: 30px;
|
||
vertical-align: top;
|
||
}
|
||
.layer1 {
|
||
dominant-baseline: auto;
|
||
text-anchor: start;
|
||
}
|
||
.layer2 {
|
||
dominant-baseline: hanging;
|
||
text-anchor: start;
|
||
}
|
||
.layer3 {
|
||
dominant-baseline: auto;
|
||
text-anchor: end;
|
||
}
|
||
.layer4 {
|
||
dominant-baseline: hanging;
|
||
text-anchor: end;
|
||
}
|
||
.function {
|
||
font-size: 20px;
|
||
}
|
||
.deadkey {
|
||
fill: red;
|
||
}
|
||
</style>
|
||
</defs>
|
||
|
||
<!-- Keyboard outline -->
|
||
<rect x="0" y="0" width="1200" height="400" />
|
||
|
||
<!-- First row -->
|
||
|
||
<rect x="0" y="0" width="80" height="80" />
|
||
<text x="10" y="70" class="layer1">`</text>
|
||
<text x="10" y="10" class="layer2">~</text>
|
||
<text x="70" y="70" class="layer3">±</text>
|
||
<text x="70" y="10" class="layer4"></text>
|
||
|
||
<rect x="80" y="0" width="80" height="80" />
|
||
<text x="90" y="70" class="layer1">1</text>
|
||
<text x="90" y="10" class="layer2">!</text>
|
||
<text x="150" y="70" class="layer3">!</text>
|
||
<text x="150" y="10" class="layer4">¡</text>
|
||
|
||
<rect x="160" y="0" width="80" height="80" />
|
||
<text x="170" y="70" class="layer1">2</text>
|
||
<text x="170" y="10" class="layer2">@</text>
|
||
<text x="230" y="70" class="layer3">‰</text>
|
||
<text x="230" y="10" class="layer4">«</text>
|
||
|
||
<rect x="240" y="0" width="80" height="80" />
|
||
<text x="250" y="70" class="layer1">3</text>
|
||
<text x="250" y="10" class="layer2">#</text>
|
||
<text x="310" y="70" class="layer3">£</text>
|
||
<text x="310" y="10" class="layer4">»</text>
|
||
|
||
<rect x="320" y="0" width="80" height="80" />
|
||
<text x="330" y="70" class="layer1">4</text>
|
||
<text x="330" y="10" class="layer2">$</text>
|
||
<text x="390" y="70" class="layer3">¢</text>
|
||
<text x="390" y="10" class="layer4">‹</text>
|
||
|
||
<rect x="400" y="0" width="80" height="80" />
|
||
<text x="410" y="70" class="layer1">5</text>
|
||
<text x="410" y="10" class="layer2">%</text>
|
||
<text x="470" y="70" class="layer3">€</text>
|
||
<text x="470" y="10" class="layer4">›</text>
|
||
|
||
<rect x="480" y="0" width="80" height="80" />
|
||
<text x="490" y="70" class="layer1">6</text>
|
||
<text x="490" y="10" class="layer2">^</text>
|
||
<text x="550" y="70" class="layer3">√</text>
|
||
<text x="550" y="10" class="layer4">✓</text>
|
||
|
||
<rect x="560" y="0" width="80" height="80" />
|
||
<text x="570" y="70" class="layer1">7</text>
|
||
<text x="570" y="10" class="layer2">&</text>
|
||
<text x="630" y="70" class="layer3">⁊</text>
|
||
<text x="630" y="10" class="layer4">✗</text>
|
||
|
||
<rect x="640" y="0" width="80" height="80" />
|
||
<text x="650" y="70" class="layer1">8</text>
|
||
<text x="650" y="10" class="layer2">*</text>
|
||
<text x="710" y="70" class="layer3">°</text>
|
||
<text x="710" y="10" class="layer4">•</text>
|
||
|
||
<rect x="720" y="0" width="80" height="80" />
|
||
<text x="730" y="70" class="layer1">9</text>
|
||
<text x="730" y="10" class="layer2">(</text>
|
||
<text x="790" y="70" class="layer3">ª</text>
|
||
<text x="790" y="10" class="layer4"></text>
|
||
|
||
<rect x="800" y="0" width="80" height="80" />
|
||
<text x="810" y="70" class="layer1">0</text>
|
||
<text x="810" y="10" class="layer2">)</text>
|
||
<text x="870" y="70" class="layer3">º</text>
|
||
<text x="870" y="10" class="layer4">×</text>
|
||
|
||
<rect x="880" y="0" width="80" height="80" />
|
||
<text x="890" y="70" class="layer1">-</text>
|
||
<text x="890" y="10" class="layer2">_</text>
|
||
<text x="950" y="70" class="layer3">−</text>
|
||
<text x="950" y="10" class="layer4">÷</text>
|
||
|
||
<rect x="960" y="0" width="80" height="80" />
|
||
<text x="970" y="70" class="layer1">=</text>
|
||
<text x="970" y="10" class="layer2">+</text>
|
||
<text x="1030" y="70" class="layer3">≈</text>
|
||
<text x="1030" y="10" class="layer4">≠</text>
|
||
|
||
<rect x="1040" y="0" width="160" height="80" />
|
||
<text x="1050" y="10" class="layer2 function">Backspace</text>
|
||
|
||
<!-- Second row -->
|
||
|
||
<rect x="0" y="80" width="120" height="80" />
|
||
<text x="10" y="90" class="layer2 function">Tab</text>
|
||
|
||
<rect x="120" y="80" width="80" height="80" />
|
||
<text x="130" y="150" class="layer1">q</text>
|
||
<text x="130" y="90" class="layer2">Q</text>
|
||
<text x="190" y="150" class="layer3">à</text>
|
||
<text x="190" y="90" class="layer4">À</text>
|
||
|
||
<rect x="200" y="80" width="80" height="80" />
|
||
<text x="210" y="150" class="layer1">w</text>
|
||
<text x="210" y="90" class="layer2">W</text>
|
||
<text x="270" y="150" class="layer3">é</text>
|
||
<text x="270" y="90" class="layer4">É</text>
|
||
|
||
<rect x="280" y="80" width="80" height="80" />
|
||
<text x="290" y="150" class="layer1">e</text>
|
||
<text x="290" y="90" class="layer2">E</text>
|
||
<text x="350" y="150" class="layer3">ë</text>
|
||
<text x="350" y="90" class="layer4">Ë</text>
|
||
|
||
<rect x="360" y="80" width="80" height="80" />
|
||
<text x="370" y="150" class="layer1">r</text>
|
||
<text x="370" y="90" class="layer2">R</text>
|
||
<text x="430" y="150" class="layer3">è</text>
|
||
<text x="430" y="90" class="layer4">È</text>
|
||
|
||
<rect x="440" y="80" width="80" height="80" />
|
||
<text x="450" y="150" class="layer1">t</text>
|
||
<text x="450" y="90" class="layer2">T</text>
|
||
<text x="510" y="150" class="layer3">®</text>
|
||
<text x="510" y="90" class="layer4">©</text>
|
||
|
||
<rect x="520" y="80" width="80" height="80" />
|
||
<text x="530" y="150" class="layer1">y</text>
|
||
<text x="530" y="90" class="layer2">Y</text>
|
||
<text x="590" y="150" class="layer3">û</text>
|
||
<text x="590" y="90" class="layer4">Û</text>
|
||
|
||
<rect x="600" y="80" width="80" height="80" />
|
||
<text x="610" y="150" class="layer1">u</text>
|
||
<text x="610" y="90" class="layer2">U</text>
|
||
<text x="670" y="150" class="layer3">ü</text>
|
||
<text x="670" y="90" class="layer4">Ü</text>
|
||
|
||
<rect x="680" y="80" width="80" height="80" />
|
||
<text x="690" y="150" class="layer1">i</text>
|
||
<text x="690" y="90" class="layer2">I</text>
|
||
<text x="750" y="150" class="layer3">ï</text>
|
||
<text x="750" y="90" class="layer4">Ï</text>
|
||
|
||
<rect x="760" y="80" width="80" height="80" />
|
||
<text x="770" y="150" class="layer1">o</text>
|
||
<text x="770" y="90" class="layer2">O</text>
|
||
<text x="830" y="150" class="layer3">ö</text>
|
||
<text x="830" y="90" class="layer4">Ö</text>
|
||
|
||
<rect x="840" y="80" width="80" height="80" />
|
||
<text x="850" y="150" class="layer1">p</text>
|
||
<text x="850" y="90" class="layer2">P</text>
|
||
<text x="910" y="150" class="layer3">¶</text>
|
||
<text x="910" y="90" class="layer4">§</text>
|
||
|
||
<rect x="920" y="80" width="80" height="80" />
|
||
<text x="930" y="150" class="layer1">[</text>
|
||
<text x="930" y="90" class="layer2">{</text>
|
||
<text x="990" y="150" class="layer3">‘</text>
|
||
<text x="990" y="90" class="layer4">“</text>
|
||
|
||
<rect x="1000" y="80" width="80" height="80" />
|
||
<text x="1010" y="150" class="layer1">]</text>
|
||
<text x="1010" y="90" class="layer2">}</text>
|
||
<text x="1070" y="150" class="layer3">’</text>
|
||
<text x="1070" y="90" class="layer4">”</text>
|
||
|
||
<rect x="1080" y="80" width="120" height="80" />
|
||
<text x="1090" y="150" class="layer1">\</text>
|
||
<text x="1090" y="90" class="layer2">|</text>
|
||
<text x="1190" y="150" class="layer3"></text>
|
||
<text x="1190" y="90" class="layer4"></text>
|
||
|
||
<!-- Third row -->
|
||
|
||
<rect x="0" y="160" width="140" height="80" />
|
||
<text x="10" y="170" class="layer2 function">Caps Lock</text>
|
||
|
||
<rect x="140" y="160" width="80" height="80" />
|
||
<text x="150" y="230" class="layer1">a</text>
|
||
<text x="150" y="170" class="layer2">A</text>
|
||
<text x="210" y="230" class="layer3">ä</text>
|
||
<text x="210" y="170" class="layer4">Ä</text>
|
||
|
||
<rect x="220" y="160" width="80" height="80" />
|
||
<text x="230" y="230" class="layer1">s</text>
|
||
<text x="230" y="170" class="layer2">S</text>
|
||
<text x="290" y="230" class="layer3">ß</text>
|
||
<text x="290" y="170" class="layer4">ẞ</text>
|
||
|
||
<rect x="300" y="160" width="80" height="80" />
|
||
<text x="310" y="230" class="layer1">d</text>
|
||
<text x="310" y="170" class="layer2">D</text>
|
||
<text x="370" y="230" class="layer3 deadkey">◌̈</text>
|
||
<text x="370" y="170" class="layer4">″</text>
|
||
|
||
<rect x="380" y="160" width="80" height="80" />
|
||
<text x="390" y="230" class="layer1">f</text>
|
||
<text x="390" y="170" class="layer2">F</text>
|
||
<text x="450" y="230" class="layer3 deadkey">◌́</text>
|
||
<text x="450" y="170" class="layer4">′</text>
|
||
|
||
<rect x="460" y="160" width="80" height="80" />
|
||
<text x="470" y="230" class="layer1">g</text>
|
||
<text x="470" y="170" class="layer2">G</text>
|
||
<text x="530" y="230" class="layer3 deadkey">◌̄</text>
|
||
<text x="530" y="170" class="layer4"></text>
|
||
|
||
<rect x="540" y="160" width="80" height="80" />
|
||
<text x="550" y="230" class="layer1">h</text>
|
||
<text x="550" y="170" class="layer2">H</text>
|
||
<text x="610" y="230" class="layer3"></text>
|
||
<text x="610" y="170" class="layer4"></text>
|
||
|
||
<rect x="620" y="160" width="80" height="80" />
|
||
<text x="630" y="230" class="layer1">j</text>
|
||
<text x="630" y="170" class="layer2">J</text>
|
||
<text x="690" y="230" class="layer3 deadkey">◌̀</text>
|
||
<text x="690" y="170" class="layer4"></text>
|
||
|
||
<rect x="700" y="160" width="80" height="80" />
|
||
<text x="710" y="230" class="layer1">k</text>
|
||
<text x="710" y="170" class="layer2">K</text>
|
||
<text x="770" y="230" class="layer3 deadkey">◌̂</text>
|
||
<text x="770" y="170" class="layer4"></text>
|
||
|
||
<rect x="780" y="160" width="80" height="80" />
|
||
<text x="790" y="230" class="layer1">l</text>
|
||
<text x="790" y="170" class="layer2">L</text>
|
||
<text x="850" y="230" class="layer3">ô</text>
|
||
<text x="850" y="170" class="layer4">Ô</text>
|
||
|
||
<rect x="860" y="160" width="80" height="80" />
|
||
<text x="870" y="230" class="layer1">;</text>
|
||
<text x="870" y="170" class="layer2">:</text>
|
||
<text x="930" y="230" class="layer3">;</text>
|
||
<text x="930" y="170" class="layer4">:</text>
|
||
|
||
<rect x="940" y="160" width="80" height="80" />
|
||
<text x="950" y="230" class="layer1">'</text>
|
||
<text x="950" y="170" class="layer2">"</text>
|
||
<text x="1010" y="230" class="layer3">‚</text>
|
||
<text x="1010" y="170" class="layer4">„</text>
|
||
|
||
<rect x="1020" y="160" width="180" height="80" />
|
||
<text x="1030" y="170" class="layer2 function">Return</text>
|
||
|
||
<!-- Fourth row -->
|
||
|
||
<rect x="0" y="240" width="180" height="80" />
|
||
<text x="10" y="250" class="layer2 function">Shift</text>
|
||
|
||
<rect x="180" y="240" width="80" height="80" />
|
||
<text x="190" y="310" class="layer1">z</text>
|
||
<text x="190" y="250" class="layer2">Z</text>
|
||
<text x="250" y="310" class="layer3">æ</text>
|
||
<text x="250" y="250" class="layer4">Æ</text>
|
||
|
||
<rect x="260" y="240" width="80" height="80" />
|
||
<text x="270" y="310" class="layer1">x</text>
|
||
<text x="270" y="250" class="layer2">X</text>
|
||
<text x="330" y="310" class="layer3">œ</text>
|
||
<text x="330" y="250" class="layer4">Œ</text>
|
||
|
||
<rect x="340" y="240" width="80" height="80" />
|
||
<text x="350" y="310" class="layer1">c</text>
|
||
<text x="350" y="250" class="layer2">C</text>
|
||
<text x="410" y="310" class="layer3">ç</text>
|
||
<text x="410" y="250" class="layer4">Ç</text>
|
||
|
||
<rect x="420" y="240" width="80" height="80" />
|
||
<text x="430" y="310" class="layer1">v</text>
|
||
<text x="430" y="250" class="layer2">V</text>
|
||
<text x="490" y="310" class="layer3">—</text>
|
||
<text x="490" y="250" class="layer4"></text>
|
||
|
||
<rect x="500" y="240" width="80" height="80" />
|
||
<text x="510" y="310" class="layer1">b</text>
|
||
<text x="510" y="250" class="layer2">B</text>
|
||
<text x="570" y="310" class="layer3">–</text>
|
||
<text x="570" y="250" class="layer4"></text>
|
||
|
||
<rect x="580" y="240" width="80" height="80" />
|
||
<text x="590" y="310" class="layer1">n</text>
|
||
<text x="590" y="250" class="layer2">N</text>
|
||
<text x="650" y="310" class="layer3">ñ</text>
|
||
<text x="650" y="250" class="layer4">Ñ</text>
|
||
|
||
<rect x="660" y="240" width="80" height="80" />
|
||
<text x="670" y="310" class="layer1">m</text>
|
||
<text x="670" y="250" class="layer2">M</text>
|
||
<text x="730" y="310" class="layer3">µ</text>
|
||
<text x="730" y="250" class="layer4">™</text>
|
||
|
||
<rect x="740" y="240" width="80" height="80" />
|
||
<text x="750" y="310" class="layer1">,</text>
|
||
<text x="750" y="250" class="layer2"><</text>
|
||
<text x="810" y="310" class="layer3">…</text>
|
||
<text x="810" y="250" class="layer4">≤</text>
|
||
|
||
<rect x="820" y="240" width="80" height="80" />
|
||
<text x="830" y="310" class="layer1">.</text>
|
||
<text x="830" y="250" class="layer2">></text>
|
||
<text x="890" y="310" class="layer3">⋅</text>
|
||
<text x="890" y="250" class="layer4">≥</text>
|
||
|
||
<rect x="900" y="240" width="80" height="80" />
|
||
<text x="910" y="310" class="layer1">/</text>
|
||
<text x="910" y="250" class="layer2">?</text>
|
||
<text x="970" y="310" class="layer3">?</text>
|
||
<text x="970" y="250" class="layer4">¿</text>
|
||
|
||
<rect x="980" y="240" width="220" height="80" />
|
||
<text x="990" y="250" class="layer2 function">Shift</text>
|
||
|
||
<!-- Fifth row -->
|
||
|
||
<rect x="0" y="320" width="120" height="80" />
|
||
<text x="10" y="350" class="function">Ctrl</text>
|
||
|
||
<rect x="120" y="320" width="100" height="80" />
|
||
<text x="130" y="350" class="function">Win</text>
|
||
|
||
<rect x="220" y="320" width="100" height="80" />
|
||
<text x="230" y="350" class="function">Alt</text>
|
||
|
||
<rect x="320" y="320" width="460" height="80" />
|
||
<text x="330" y="390" class="layer1 function">Space</text>
|
||
<text x="330" y="330" class="layer2 function">Space</text>
|
||
<text x="770" y="390" class="layer3 function">Narrow non-breaking space</text>
|
||
<text x="770" y="330" class="layer4 function">Non-breaking space</text>
|
||
|
||
<rect x="780" y="320" width="100" height="80" />
|
||
<text x="790" y="350" class="function">AltGr</text>
|
||
|
||
<rect x="880" y="320" width="100" height="80" />
|
||
<text x="890" y="350" class="function">Win</text>
|
||
|
||
<rect x="980" y="320" width="100" height="80" />
|
||
<text x="990" y="350" class="function">Menu</text>
|
||
|
||
<rect x="1080" y="320" width="120" height="80" />
|
||
<text x="1090" y="350" class="function">Ctrl</text>
|
||
|
||
</svg>
|
||
<h2 id="key-table">Key table</h2>
|
||
<table>
|
||
<colgroup>
|
||
<col class="level-group-left" />
|
||
<col />
|
||
<col class="level-group-right" />
|
||
<col class="level-group-left" />
|
||
<col class="level-group-right" />
|
||
<col class="level-group-left" />
|
||
<col class="level-group-right" />
|
||
<thead>
|
||
<tr>
|
||
<th colspan="3">Key</th>
|
||
<th colspan="2">US</th>
|
||
<th colspan="2">ACP</th>
|
||
</tr>
|
||
<tr>
|
||
<th>ISO</th>
|
||
<th>XKB</th>
|
||
<th>Win</th>
|
||
<th>Level 1</th>
|
||
<th>Level 2</th>
|
||
<th>Level 3</th>
|
||
<th>Level 4</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td>E00</td>
|
||
<td>TLDE</td>
|
||
<td>SC029</td>
|
||
<td><span class="codepoint">U+0060</span> <span class="key-character">`</span></td>
|
||
<td><span class="codepoint">U+007E</span> <span class="key-character">~</span></td>
|
||
<td><span class="codepoint">U+00B1</span> <span class="key-character">±</span></td>
|
||
<td></td>
|
||
</tr>
|
||
<tr>
|
||
<td>E01</td>
|
||
<td>AE01</td>
|
||
<td>SC002</td>
|
||
<td><span class="codepoint">U+0031</span> <span class="key-character">1</span></td>
|
||
<td><span class="codepoint">U+0021</span> <span class="key-character">!</span></td>
|
||
<td><span class="codepoint">U+0021</span> <span class="key-character">!</span></td>
|
||
<td><span class="codepoint">U+00A1</span> <span class="key-character">¡</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>E02</td>
|
||
<td>AE02</td>
|
||
<td>SC003</td>
|
||
<td><span class="codepoint">U+0032</span> <span class="key-character">2</span></td>
|
||
<td><span class="codepoint">U+0040</span> <span class="key-character">@</span></td>
|
||
<td><span class="codepoint">U+2030</span> <span class="key-character">‰</span></td>
|
||
<td><span class="codepoint">U+00AB</span> <span class="key-character">«</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>E03</td>
|
||
<td>AE03</td>
|
||
<td>SC004</td>
|
||
<td><span class="codepoint">U+0033</span> <span class="key-character">3</span></td>
|
||
<td><span class="codepoint">U+0023</span> <span class="key-character">#</span></td>
|
||
<td><span class="codepoint">U+00A3</span> <span class="key-character">£</span></td>
|
||
<td><span class="codepoint">U+00BB</span> <span class="key-character">»</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>E04</td>
|
||
<td>AE04</td>
|
||
<td>SC005</td>
|
||
<td><span class="codepoint">U+0034</span> <span class="key-character">4</span></td>
|
||
<td><span class="codepoint">U+0024</span> <span class="key-character">$</span></td>
|
||
<td><span class="codepoint">U+00A2</span> <span class="key-character">¢</span></td>
|
||
<td><span class="codepoint">U+2039</span> <span class="key-character">‹</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>E05</td>
|
||
<td>AE05</td>
|
||
<td>SC006</td>
|
||
<td><span class="codepoint">U+0035</span> <span class="key-character">5</span></td>
|
||
<td><span class="codepoint">U+0025</span> <span class="key-character">%</span></td>
|
||
<td><span class="codepoint">U+20AC</span> <span class="key-character">€</span></td>
|
||
<td><span class="codepoint">U+203A</span> <span class="key-character">›</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>E06</td>
|
||
<td>AE06</td>
|
||
<td>SC007</td>
|
||
<td><span class="codepoint">U+0036</span> <span class="key-character">6</span></td>
|
||
<td><span class="codepoint">U+005E</span> <span class="key-character">^</span></td>
|
||
<td><span class="codepoint">U+221A</span> <span class="key-character">√</span></td>
|
||
<td><span class="codepoint">U+2713</span> <span class="key-character">✓</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>E07</td>
|
||
<td>AE07</td>
|
||
<td>SC008</td>
|
||
<td><span class="codepoint">U+0037</span> <span class="key-character">7</span></td>
|
||
<td><span class="codepoint">U+0026</span> <span class="key-character">&</span></td>
|
||
<td><span class="codepoint">U+204A</span> <span class="key-character">⁊</span></td>
|
||
<td><span class="codepoint">U+2717</span> <span class="key-character">✗</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>E08</td>
|
||
<td>AE08</td>
|
||
<td>SC009</td>
|
||
<td><span class="codepoint">U+0038</span> <span class="key-character">8</span></td>
|
||
<td><span class="codepoint">U+002A</span> <span class="key-character">*</span></td>
|
||
<td><span class="codepoint">U+00B0</span> <span class="key-character">°</span></td>
|
||
<td><span class="codepoint">U+2022</span> <span class="key-character">•</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>E09</td>
|
||
<td>AE09</td>
|
||
<td>SC00A</td>
|
||
<td><span class="codepoint">U+0039</span> <span class="key-character">9</span></td>
|
||
<td><span class="codepoint">U+0028</span> <span class="key-character">(</span></td>
|
||
<td><span class="codepoint">U+00AA</span> <span class="key-character">ª</span></td>
|
||
<td></td>
|
||
</tr>
|
||
<tr>
|
||
<td>E10</td>
|
||
<td>AE10</td>
|
||
<td>SC00B</td>
|
||
<td><span class="codepoint">U+0030</span> <span class="key-character">0</span></td>
|
||
<td><span class="codepoint">U+0029</span> <span class="key-character">)</span></td>
|
||
<td><span class="codepoint">U+00BA</span> <span class="key-character">º</span></td>
|
||
<td><span class="codepoint">U+00D7</span> <span class="key-character">×</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>E11</td>
|
||
<td>AE11</td>
|
||
<td>SC00C</td>
|
||
<td><span class="codepoint">U+002D</span> <span class="key-character">-</span></td>
|
||
<td><span class="codepoint">U+005F</span> <span class="key-character">_</span></td>
|
||
<td><span class="codepoint">U+2212</span> <span class="key-character">−</span></td>
|
||
<td><span class="codepoint">U+00F7</span> <span class="key-character">÷</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>E12</td>
|
||
<td>AE12</td>
|
||
<td>SC00D</td>
|
||
<td><span class="codepoint">U+003D</span> <span class="key-character">=</span></td>
|
||
<td><span class="codepoint">U+002B</span> <span class="key-character">+</span></td>
|
||
<td><span class="codepoint">U+2248</span> <span class="key-character">≈</span></td>
|
||
<td><span class="codepoint">U+2260</span> <span class="key-character">≠</span></td>
|
||
</tr>
|
||
</tbody>
|
||
<tbody>
|
||
<tr>
|
||
<td>D01</td>
|
||
<td>AD01</td>
|
||
<td>SC010</td>
|
||
<td><span class="codepoint">U+0071</span> <span class="key-character">q</span></td>
|
||
<td><span class="codepoint">U+0051</span> <span class="key-character">Q</span></td>
|
||
<td><span class="codepoint">U+00E0</span> <span class="key-character">à</span></td>
|
||
<td><span class="codepoint">U+00C0</span> <span class="key-character">À</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>D02</td>
|
||
<td>AD02</td>
|
||
<td>SC011</td>
|
||
<td><span class="codepoint">U+0077</span> <span class="key-character">w</span></td>
|
||
<td><span class="codepoint">U+0057</span> <span class="key-character">W</span></td>
|
||
<td><span class="codepoint">U+00E9</span> <span class="key-character">é</span></td>
|
||
<td><span class="codepoint">U+00C9</span> <span class="key-character">É</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>D03</td>
|
||
<td>AD03</td>
|
||
<td>SC012</td>
|
||
<td><span class="codepoint">U+0065</span> <span class="key-character">e</span></td>
|
||
<td><span class="codepoint">U+0045</span> <span class="key-character">E</span></td>
|
||
<td><span class="codepoint">U+00EB</span> <span class="key-character">ë</span></td>
|
||
<td><span class="codepoint">U+00CB</span> <span class="key-character">Ë</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>D04</td>
|
||
<td>AD04</td>
|
||
<td>SC013</td>
|
||
<td><span class="codepoint">U+0072</span> <span class="key-character">r</span></td>
|
||
<td><span class="codepoint">U+0052</span> <span class="key-character">R</span></td>
|
||
<td><span class="codepoint">U+00E8</span> <span class="key-character">è</span></td>
|
||
<td><span class="codepoint">U+00C8</span> <span class="key-character">È</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>D05</td>
|
||
<td>AD05</td>
|
||
<td>SC014</td>
|
||
<td><span class="codepoint">U+0074</span> <span class="key-character">t</span></td>
|
||
<td><span class="codepoint">U+0054</span> <span class="key-character">T</span></td>
|
||
<td><span class="codepoint">U+00AE</span> <span class="key-character">®</span></td>
|
||
<td><span class="codepoint">U+00A9</span> <span class="key-character">©</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>D06</td>
|
||
<td>AD06</td>
|
||
<td>SC015</td>
|
||
<td><span class="codepoint">U+0079</span> <span class="key-character">y</span></td>
|
||
<td><span class="codepoint">U+0059</span> <span class="key-character">Y</span></td>
|
||
<td><span class="codepoint">U+00FB</span> <span class="key-character">û</span></td>
|
||
<td><span class="codepoint">U+00DB</span> <span class="key-character">Û</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>D07</td>
|
||
<td>AD07</td>
|
||
<td>SC016</td>
|
||
<td><span class="codepoint">U+0075</span> <span class="key-character">u</span></td>
|
||
<td><span class="codepoint">U+0055</span> <span class="key-character">U</span></td>
|
||
<td><span class="codepoint">U+00FC</span> <span class="key-character">ü</span></td>
|
||
<td><span class="codepoint">U+00DC</span> <span class="key-character">Ü</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>D08</td>
|
||
<td>AD08</td>
|
||
<td>SC017</td>
|
||
<td><span class="codepoint">U+0069</span> <span class="key-character">i</span></td>
|
||
<td><span class="codepoint">U+0049</span> <span class="key-character">I</span></td>
|
||
<td><span class="codepoint">U+00EF</span> <span class="key-character">ï</span></td>
|
||
<td><span class="codepoint">U+00CF</span> <span class="key-character">Ï</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>D09</td>
|
||
<td>AD09</td>
|
||
<td>SC018</td>
|
||
<td><span class="codepoint">U+006F</span> <span class="key-character">o</span></td>
|
||
<td><span class="codepoint">U+004F</span> <span class="key-character">O</span></td>
|
||
<td><span class="codepoint">U+00F6</span> <span class="key-character">ö</span></td>
|
||
<td><span class="codepoint">U+00D6</span> <span class="key-character">Ö</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>D10</td>
|
||
<td>AD10</td>
|
||
<td>SC019</td>
|
||
<td><span class="codepoint">U+0070</span> <span class="key-character">p</span></td>
|
||
<td><span class="codepoint">U+0050</span> <span class="key-character">P</span></td>
|
||
<td><span class="codepoint">U+00B6</span> <span class="key-character">¶</span></td>
|
||
<td><span class="codepoint">U+00A7</span> <span class="key-character">§</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>D11</td>
|
||
<td>AD11</td>
|
||
<td>SC01A</td>
|
||
<td><span class="codepoint">U+005B</span> <span class="key-character">[</span></td>
|
||
<td><span class="codepoint">U+007B</span> <span class="key-character">{</span></td>
|
||
<td><span class="codepoint">U+2018</span> <span class="key-character">‘</span></td>
|
||
<td><span class="codepoint">U+201C</span> <span class="key-character">“</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>D12</td>
|
||
<td>AD12</td>
|
||
<td>SC01B</td>
|
||
<td><span class="codepoint">U+005D</span> <span class="key-character">]</span></td>
|
||
<td><span class="codepoint">U+007D</span> <span class="key-character">}</span></td>
|
||
<td><span class="codepoint">U+2019</span> <span class="key-character">’</span></td>
|
||
<td><span class="codepoint">U+201D</span> <span class="key-character">”</span></td>
|
||
</tr>
|
||
</tbody>
|
||
<tbody>
|
||
<tr>
|
||
<td>C01</td>
|
||
<td>AC01</td>
|
||
<td>SC01E</td>
|
||
<td><span class="codepoint">U+0061</span> <span class="key-character">a</span></td>
|
||
<td><span class="codepoint">U+0041</span> <span class="key-character">A</span></td>
|
||
<td><span class="codepoint">U+00E4</span> <span class="key-character">ä</span></td>
|
||
<td><span class="codepoint">U+00C4</span> <span class="key-character">Ä</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>C02</td>
|
||
<td>AC02</td>
|
||
<td>SC01F</td>
|
||
<td><span class="codepoint">U+0073</span> <span class="key-character">s</span></td>
|
||
<td><span class="codepoint">U+0053</span> <span class="key-character">S</span></td>
|
||
<td><span class="codepoint">U+00DF</span> <span class="key-character">ß</span></td>
|
||
<td><span class="codepoint">U+1E9E</span> <span class="key-character">ẞ</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>C03</td>
|
||
<td>AC03</td>
|
||
<td>SC020</td>
|
||
<td><span class="codepoint">U+0064</span> <span class="key-character">d</span></td>
|
||
<td><span class="codepoint">U+0044</span> <span class="key-character">D</span></td>
|
||
<td class="deadkey"><span class="codepoint">DEADDI</span> <span class="key-character">◌̈</span></td>
|
||
<td><span class="codepoint">U+2033</span> <span class="key-character">″</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>C04</td>
|
||
<td>AC04</td>
|
||
<td>SC021</td>
|
||
<td><span class="codepoint">U+0066</span> <span class="key-character">f</span></td>
|
||
<td><span class="codepoint">U+0046</span> <span class="key-character">F</span></td>
|
||
<td class="deadkey"><span class="codepoint">DEADAC</span> <span class="key-character">◌́</span></td>
|
||
<td><span class="codepoint">U+2032</span> <span class="key-character">′</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>C05</td>
|
||
<td>AC05</td>
|
||
<td>SC022</td>
|
||
<td><span class="codepoint">U+0067</span> <span class="key-character">g</span></td>
|
||
<td><span class="codepoint">U+0047</span> <span class="key-character">G</span></td>
|
||
<td class="deadkey"><span class="codepoint">DEADMA</span> <span class="key-character">◌̄</span></td>
|
||
<td></td>
|
||
</tr>
|
||
<tr>
|
||
<td>C06</td>
|
||
<td>AC06</td>
|
||
<td>SC023</td>
|
||
<td><span class="codepoint">U+0068</span> <span class="key-character">h</span></td>
|
||
<td><span class="codepoint">U+0048</span> <span class="key-character">H</span></td>
|
||
<td></td>
|
||
<td></td>
|
||
</tr>
|
||
<tr>
|
||
<td>C07</td>
|
||
<td>AC07</td>
|
||
<td>SC024</td>
|
||
<td><span class="codepoint">U+006A</span> <span class="key-character">j</span></td>
|
||
<td><span class="codepoint">U+004A</span> <span class="key-character">J</span></td>
|
||
<td class="deadkey"><span class="codepoint">DEADGR</span> <span class="key-character">◌̀</span></td>
|
||
<td></td>
|
||
</tr>
|
||
<tr>
|
||
<td>C08</td>
|
||
<td>AC08</td>
|
||
<td>SC025</td>
|
||
<td><span class="codepoint">U+006B</span> <span class="key-character">k</span></td>
|
||
<td><span class="codepoint">U+004B</span> <span class="key-character">K</span></td>
|
||
<td class="deadkey"><span class="codepoint">DEADCI</span> <span class="key-character">◌̂</span></td>
|
||
<td></td>
|
||
</tr>
|
||
<tr>
|
||
<td>C09</td>
|
||
<td>AC09</td>
|
||
<td>SC026</td>
|
||
<td><span class="codepoint">U+006C</span> <span class="key-character">l</span></td>
|
||
<td><span class="codepoint">U+004C</span> <span class="key-character">L</span></td>
|
||
<td><span class="codepoint">U+00F4</span> <span class="key-character">ô</span></td>
|
||
<td><span class="codepoint">U+00D4</span> <span class="key-character">Ô</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>C10</td>
|
||
<td>AC10</td>
|
||
<td>SC027</td>
|
||
<td><span class="codepoint">U+003B</span> <span class="key-character">;</span></td>
|
||
<td><span class="codepoint">U+003A</span> <span class="key-character">:</span></td>
|
||
<td><span class="codepoint">U+003B</span> <span class="key-character">;</span></td>
|
||
<td><span class="codepoint">U+003A</span> <span class="key-character">:</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>C11</td>
|
||
<td>AC11</td>
|
||
<td>SC028</td>
|
||
<td><span class="codepoint">U+0027</span> <span class="key-character">'</span></td>
|
||
<td><span class="codepoint">U+0022</span> <span class="key-character">"</span></td>
|
||
<td><span class="codepoint">U+201A</span> <span class="key-character">‚</span></td>
|
||
<td><span class="codepoint">U+201E</span> <span class="key-character">„</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>C12</td>
|
||
<td>BKSL</td>
|
||
<td>SC02B</td>
|
||
<td><span class="codepoint">U+005C</span> <span class="key-character">\</span></td>
|
||
<td><span class="codepoint">U+007C</span> <span class="key-character">|</span></td>
|
||
<td></td>
|
||
<td></td>
|
||
</tr>
|
||
</tbody>
|
||
<tbody>
|
||
<tr>
|
||
<td>B00</td>
|
||
<td>LSGT</td>
|
||
<td>SC056</td>
|
||
<td><span class="codepoint">U+005C</span> <span class="key-character">\</span></td>
|
||
<td><span class="codepoint">U+007C</span> <span class="key-character">|</span></td>
|
||
<td><span class="codepoint">U+00EA</span> <span class="key-character">ê</span></td>
|
||
<td><span class="codepoint">U+00CA</span> <span class="key-character">Ê</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>B01</td>
|
||
<td>AB01</td>
|
||
<td>SC02C</td>
|
||
<td><span class="codepoint">U+007A</span> <span class="key-character">z</span></td>
|
||
<td><span class="codepoint">U+005A</span> <span class="key-character">Z</span></td>
|
||
<td><span class="codepoint">U+00E6</span> <span class="key-character">æ</span></td>
|
||
<td><span class="codepoint">U+00C6</span> <span class="key-character">Æ</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>B02</td>
|
||
<td>AB02</td>
|
||
<td>SC02D</td>
|
||
<td><span class="codepoint">U+0078</span> <span class="key-character">x</span></td>
|
||
<td><span class="codepoint">U+0058</span> <span class="key-character">X</span></td>
|
||
<td><span class="codepoint">U+0153</span> <span class="key-character">œ</span></td>
|
||
<td><span class="codepoint">U+0152</span> <span class="key-character">Œ</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>B03</td>
|
||
<td>AB03</td>
|
||
<td>SC02E</td>
|
||
<td><span class="codepoint">U+0063</span> <span class="key-character">c</span></td>
|
||
<td><span class="codepoint">U+0043</span> <span class="key-character">C</span></td>
|
||
<td><span class="codepoint">U+00E7</span> <span class="key-character">ç</span></td>
|
||
<td><span class="codepoint">U+00C7</span> <span class="key-character">Ç</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>B04</td>
|
||
<td>AB04</td>
|
||
<td>SC02F</td>
|
||
<td><span class="codepoint">U+0076</span> <span class="key-character">v</span></td>
|
||
<td><span class="codepoint">U+0056</span> <span class="key-character">V</span></td>
|
||
<td><span class="codepoint">U+2014</span> <span class="key-character">—</span></td>
|
||
<td></td>
|
||
</tr>
|
||
<tr>
|
||
<td>B05</td>
|
||
<td>AB05</td>
|
||
<td>SC030</td>
|
||
<td><span class="codepoint">U+0062</span> <span class="key-character">b</span></td>
|
||
<td><span class="codepoint">U+0042</span> <span class="key-character">B</span></td>
|
||
<td><span class="codepoint">U+2013</span> <span class="key-character">–</span></td>
|
||
<td></td>
|
||
</tr>
|
||
<tr>
|
||
<td>B06</td>
|
||
<td>AB06</td>
|
||
<td>SC031</td>
|
||
<td><span class="codepoint">U+006E</span> <span class="key-character">n</span></td>
|
||
<td><span class="codepoint">U+004E</span> <span class="key-character">N</span></td>
|
||
<td><span class="codepoint">U+00F1</span> <span class="key-character">ñ</span></td>
|
||
<td><span class="codepoint">U+00D1</span> <span class="key-character">Ñ</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>B07</td>
|
||
<td>AB07</td>
|
||
<td>SC032</td>
|
||
<td><span class="codepoint">U+006D</span> <span class="key-character">m</span></td>
|
||
<td><span class="codepoint">U+004D</span> <span class="key-character">M</span></td>
|
||
<td><span class="codepoint">U+00B5</span> <span class="key-character">µ</span></td>
|
||
<td><span class="codepoint">U+2122</span> <span class="key-character">™</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>B08</td>
|
||
<td>AB08</td>
|
||
<td>SC033</td>
|
||
<td><span class="codepoint">U+002C</span> <span class="key-character">,</span></td>
|
||
<td><span class="codepoint">U+003C</span> <span class="key-character"><</span></td>
|
||
<td><span class="codepoint">U+2026</span> <span class="key-character">…</span></td>
|
||
<td><span class="codepoint">U+2264</span> <span class="key-character">≤</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>B09</td>
|
||
<td>AB09</td>
|
||
<td>SC034</td>
|
||
<td><span class="codepoint">U+002E</span> <span class="key-character">.</span></td>
|
||
<td><span class="codepoint">U+003E</span> <span class="key-character">></span></td>
|
||
<td><span class="codepoint">U+22C5</span> <span class="key-character">⋅</span></td>
|
||
<td><span class="codepoint">U+2265</span> <span class="key-character">≥</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>B10</td>
|
||
<td>AB10</td>
|
||
<td>SC035</td>
|
||
<td><span class="codepoint">U+002F</span> <span class="key-character">/</span></td>
|
||
<td><span class="codepoint">U+003F</span> <span class="key-character">?</span></td>
|
||
<td><span class="codepoint">U+003F</span> <span class="key-character">?</span></td>
|
||
<td><span class="codepoint">U+00BF</span> <span class="key-character">¿</span></td>
|
||
</tr>
|
||
</tbody>
|
||
<tbody>
|
||
<tr>
|
||
<td>SPC</td>
|
||
<td>SPCE</td>
|
||
<td>SC039</td>
|
||
<td><span class="codepoint">U+0020</span> <span class="key-character"> </span></td>
|
||
<td><span class="codepoint">U+0020</span> <span class="key-character"> </span></td>
|
||
<td><span class="codepoint">U+202F</span> <span class="key-character"> </span></td>
|
||
<td><span class="codepoint">U+00A0</span> <span class="key-character"> </span></td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
<h2 id="dead-key-table">Dead key table</h2>
|
||
<table>
|
||
<thead>
|
||
<tr>
|
||
<th>Dead key</th>
|
||
<th>Next key</th>
|
||
<th>Result</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td><span class="codepoint">DEADAC</span></td>
|
||
<td><span class="codepoint"> </span></td>
|
||
<td><span class="codepoint">U+0027</span> <span class="key-character">'</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADAC</span></td>
|
||
<td><span class="codepoint">A</span></td>
|
||
<td><span class="codepoint">U+00C1</span> <span class="key-character">Á</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADAC</span></td>
|
||
<td><span class="codepoint">E</span></td>
|
||
<td><span class="codepoint">U+00C9</span> <span class="key-character">É</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADAC</span></td>
|
||
<td><span class="codepoint">I</span></td>
|
||
<td><span class="codepoint">U+00CD</span> <span class="key-character">Í</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADAC</span></td>
|
||
<td><span class="codepoint">O</span></td>
|
||
<td><span class="codepoint">U+00D3</span> <span class="key-character">Ó</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADAC</span></td>
|
||
<td><span class="codepoint">U</span></td>
|
||
<td><span class="codepoint">U+00DA</span> <span class="key-character">Ú</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADAC</span></td>
|
||
<td><span class="codepoint">W</span></td>
|
||
<td><span class="codepoint">U+1E82</span> <span class="key-character">Ẃ</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADAC</span></td>
|
||
<td><span class="codepoint">Y</span></td>
|
||
<td><span class="codepoint">U+00DD</span> <span class="key-character">Ý</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADAC</span></td>
|
||
<td><span class="codepoint">a</span></td>
|
||
<td><span class="codepoint">U+00E1</span> <span class="key-character">á</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADAC</span></td>
|
||
<td><span class="codepoint">e</span></td>
|
||
<td><span class="codepoint">U+00E9</span> <span class="key-character">é</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADAC</span></td>
|
||
<td><span class="codepoint">i</span></td>
|
||
<td><span class="codepoint">U+00ED</span> <span class="key-character">í</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADAC</span></td>
|
||
<td><span class="codepoint">o</span></td>
|
||
<td><span class="codepoint">U+00F3</span> <span class="key-character">ó</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADAC</span></td>
|
||
<td><span class="codepoint">u</span></td>
|
||
<td><span class="codepoint">U+00FA</span> <span class="key-character">ú</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADAC</span></td>
|
||
<td><span class="codepoint">w</span></td>
|
||
<td><span class="codepoint">U+1E83</span> <span class="key-character">ẃ</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADAC</span></td>
|
||
<td><span class="codepoint">y</span></td>
|
||
<td><span class="codepoint">U+00FD</span> <span class="key-character">ý</span></td>
|
||
</tr>
|
||
</tbody>
|
||
<tbody>
|
||
<tr>
|
||
<td><span class="codepoint">DEADCI</span></td>
|
||
<td><span class="codepoint"> </span></td>
|
||
<td><span class="codepoint">U+005E</span> <span class="key-character">^</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADCI</span></td>
|
||
<td><span class="codepoint">A</span></td>
|
||
<td><span class="codepoint">U+00C2</span> <span class="key-character">Â</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADCI</span></td>
|
||
<td><span class="codepoint">E</span></td>
|
||
<td><span class="codepoint">U+00CA</span> <span class="key-character">Ê</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADCI</span></td>
|
||
<td><span class="codepoint">I</span></td>
|
||
<td><span class="codepoint">U+00CE</span> <span class="key-character">Î</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADCI</span></td>
|
||
<td><span class="codepoint">O</span></td>
|
||
<td><span class="codepoint">U+00D4</span> <span class="key-character">Ô</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADCI</span></td>
|
||
<td><span class="codepoint">U</span></td>
|
||
<td><span class="codepoint">U+00DB</span> <span class="key-character">Û</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADCI</span></td>
|
||
<td><span class="codepoint">W</span></td>
|
||
<td><span class="codepoint">U+0174</span> <span class="key-character">Ŵ</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADCI</span></td>
|
||
<td><span class="codepoint">Y</span></td>
|
||
<td><span class="codepoint">U+0176</span> <span class="key-character">Ŷ</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADCI</span></td>
|
||
<td><span class="codepoint">a</span></td>
|
||
<td><span class="codepoint">U+00E2</span> <span class="key-character">â</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADCI</span></td>
|
||
<td><span class="codepoint">e</span></td>
|
||
<td><span class="codepoint">U+00EA</span> <span class="key-character">ê</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADCI</span></td>
|
||
<td><span class="codepoint">i</span></td>
|
||
<td><span class="codepoint">U+00EE</span> <span class="key-character">î</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADCI</span></td>
|
||
<td><span class="codepoint">o</span></td>
|
||
<td><span class="codepoint">U+00F4</span> <span class="key-character">ô</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADCI</span></td>
|
||
<td><span class="codepoint">u</span></td>
|
||
<td><span class="codepoint">U+00FB</span> <span class="key-character">û</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADCI</span></td>
|
||
<td><span class="codepoint">w</span></td>
|
||
<td><span class="codepoint">U+0175</span> <span class="key-character">ŵ</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADCI</span></td>
|
||
<td><span class="codepoint">y</span></td>
|
||
<td><span class="codepoint">U+0177</span> <span class="key-character">ŷ</span></td>
|
||
</tr>
|
||
</tbody>
|
||
<tbody>
|
||
<tr>
|
||
<td><span class="codepoint">DEADDI</span></td>
|
||
<td><span class="codepoint"> </span></td>
|
||
<td><span class="codepoint">U+0022</span> <span class="key-character">"</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADDI</span></td>
|
||
<td><span class="codepoint">A</span></td>
|
||
<td><span class="codepoint">U+00C4</span> <span class="key-character">Ä</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADDI</span></td>
|
||
<td><span class="codepoint">E</span></td>
|
||
<td><span class="codepoint">U+00CB</span> <span class="key-character">Ë</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADDI</span></td>
|
||
<td><span class="codepoint">I</span></td>
|
||
<td><span class="codepoint">U+00CF</span> <span class="key-character">Ï</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADDI</span></td>
|
||
<td><span class="codepoint">O</span></td>
|
||
<td><span class="codepoint">U+00D6</span> <span class="key-character">Ö</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADDI</span></td>
|
||
<td><span class="codepoint">U</span></td>
|
||
<td><span class="codepoint">U+00DC</span> <span class="key-character">Ü</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADDI</span></td>
|
||
<td><span class="codepoint">W</span></td>
|
||
<td><span class="codepoint">U+1E84</span> <span class="key-character">Ẅ</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADDI</span></td>
|
||
<td><span class="codepoint">Y</span></td>
|
||
<td><span class="codepoint">U+0178</span> <span class="key-character">Ÿ</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADDI</span></td>
|
||
<td><span class="codepoint">a</span></td>
|
||
<td><span class="codepoint">U+00E4</span> <span class="key-character">ä</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADDI</span></td>
|
||
<td><span class="codepoint">e</span></td>
|
||
<td><span class="codepoint">U+00EB</span> <span class="key-character">ë</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADDI</span></td>
|
||
<td><span class="codepoint">i</span></td>
|
||
<td><span class="codepoint">U+00EF</span> <span class="key-character">ï</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADDI</span></td>
|
||
<td><span class="codepoint">o</span></td>
|
||
<td><span class="codepoint">U+00F6</span> <span class="key-character">ö</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADDI</span></td>
|
||
<td><span class="codepoint">u</span></td>
|
||
<td><span class="codepoint">U+00FC</span> <span class="key-character">ü</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADDI</span></td>
|
||
<td><span class="codepoint">w</span></td>
|
||
<td><span class="codepoint">U+1E85</span> <span class="key-character">ẅ</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADDI</span></td>
|
||
<td><span class="codepoint">y</span></td>
|
||
<td><span class="codepoint">U+00FF</span> <span class="key-character">ÿ</span></td>
|
||
</tr>
|
||
</tbody>
|
||
<tbody>
|
||
<tr>
|
||
<td><span class="codepoint">DEADGR</span></td>
|
||
<td><span class="codepoint"> </span></td>
|
||
<td><span class="codepoint">U+0060</span> <span class="key-character">`</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADGR</span></td>
|
||
<td><span class="codepoint">A</span></td>
|
||
<td><span class="codepoint">U+00C0</span> <span class="key-character">À</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADGR</span></td>
|
||
<td><span class="codepoint">E</span></td>
|
||
<td><span class="codepoint">U+00C8</span> <span class="key-character">È</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADGR</span></td>
|
||
<td><span class="codepoint">I</span></td>
|
||
<td><span class="codepoint">U+00CC</span> <span class="key-character">Ì</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADGR</span></td>
|
||
<td><span class="codepoint">O</span></td>
|
||
<td><span class="codepoint">U+00D2</span> <span class="key-character">Ò</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADGR</span></td>
|
||
<td><span class="codepoint">U</span></td>
|
||
<td><span class="codepoint">U+00D9</span> <span class="key-character">Ù</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADGR</span></td>
|
||
<td><span class="codepoint">W</span></td>
|
||
<td><span class="codepoint">U+1E80</span> <span class="key-character">Ẁ</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADGR</span></td>
|
||
<td><span class="codepoint">Y</span></td>
|
||
<td><span class="codepoint">U+1EF2</span> <span class="key-character">Ỳ</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADGR</span></td>
|
||
<td><span class="codepoint">a</span></td>
|
||
<td><span class="codepoint">U+00E0</span> <span class="key-character">à</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADGR</span></td>
|
||
<td><span class="codepoint">e</span></td>
|
||
<td><span class="codepoint">U+00E8</span> <span class="key-character">è</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADGR</span></td>
|
||
<td><span class="codepoint">i</span></td>
|
||
<td><span class="codepoint">U+00EC</span> <span class="key-character">ì</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADGR</span></td>
|
||
<td><span class="codepoint">o</span></td>
|
||
<td><span class="codepoint">U+00F2</span> <span class="key-character">ò</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADGR</span></td>
|
||
<td><span class="codepoint">u</span></td>
|
||
<td><span class="codepoint">U+00F9</span> <span class="key-character">ù</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADGR</span></td>
|
||
<td><span class="codepoint">w</span></td>
|
||
<td><span class="codepoint">U+1E81</span> <span class="key-character">ẁ</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADGR</span></td>
|
||
<td><span class="codepoint">y</span></td>
|
||
<td><span class="codepoint">U+1EF3</span> <span class="key-character">ỳ</span></td>
|
||
</tr>
|
||
</tbody>
|
||
<tbody>
|
||
<tr>
|
||
<td><span class="codepoint">DEADMA</span></td>
|
||
<td><span class="codepoint"> </span></td>
|
||
<td><span class="codepoint">U+00AF</span> <span class="key-character">¯</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADMA</span></td>
|
||
<td><span class="codepoint">A</span></td>
|
||
<td><span class="codepoint">U+0100</span> <span class="key-character">Ā</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADMA</span></td>
|
||
<td><span class="codepoint">E</span></td>
|
||
<td><span class="codepoint">U+0112</span> <span class="key-character">Ē</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADMA</span></td>
|
||
<td><span class="codepoint">I</span></td>
|
||
<td><span class="codepoint">U+012A</span> <span class="key-character">Ī</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADMA</span></td>
|
||
<td><span class="codepoint">O</span></td>
|
||
<td><span class="codepoint">U+014C</span> <span class="key-character">Ō</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADMA</span></td>
|
||
<td><span class="codepoint">U</span></td>
|
||
<td><span class="codepoint">U+016A</span> <span class="key-character">Ū</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADMA</span></td>
|
||
<td><span class="codepoint">Y</span></td>
|
||
<td><span class="codepoint">U+0232</span> <span class="key-character">Ȳ</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADMA</span></td>
|
||
<td><span class="codepoint">a</span></td>
|
||
<td><span class="codepoint">U+0101</span> <span class="key-character">ā</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADMA</span></td>
|
||
<td><span class="codepoint">e</span></td>
|
||
<td><span class="codepoint">U+0113</span> <span class="key-character">ē</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADMA</span></td>
|
||
<td><span class="codepoint">i</span></td>
|
||
<td><span class="codepoint">U+012B</span> <span class="key-character">ī</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADMA</span></td>
|
||
<td><span class="codepoint">o</span></td>
|
||
<td><span class="codepoint">U+014D</span> <span class="key-character">ō</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADMA</span></td>
|
||
<td><span class="codepoint">u</span></td>
|
||
<td><span class="codepoint">U+016B</span> <span class="key-character">ū</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td><span class="codepoint">DEADMA</span></td>
|
||
<td><span class="codepoint">y</span></td>
|
||
<td><span class="codepoint">U+0233</span> <span class="key-character">ȳ</span></td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
<h2 id="code-reference-table">Code reference table</h2>
|
||
<h3 id="dead-keys">Dead keys</h3>
|
||
<ul class="unicode-table">
|
||
<li><span class="codepoint">DEADAC</span> DEAD KEY ACUTE ACCENT</li>
|
||
<li><span class="codepoint">DEADCI</span> DEAD KEY CIRCUMFLEX</li>
|
||
<li><span class="codepoint">DEADDI</span> DEAD KEY DIAERESIS</li>
|
||
<li><span class="codepoint">DEADGR</span> DEAD KEY GRAVE ACCENT</li>
|
||
<li><span class="codepoint">DEADMA</span> DEAD KEY MACRON</li>
|
||
</ul>
|
||
<h3 id="unicode">Unicode</h3>
|
||
<ul class="unicode-table">
|
||
<li><span class="codepoint">U+0020</span> SPACE</li>
|
||
<li><span class="codepoint">U+0021</span> EXCLAMATION MARK</li>
|
||
<li><span class="codepoint">U+0022</span> QUOTATION MARK</li>
|
||
<li><span class="codepoint">U+0023</span> NUMBER SIGN</li>
|
||
<li><span class="codepoint">U+0024</span> DOLLAR SIGN</li>
|
||
<li><span class="codepoint">U+0025</span> PERCENT SIGN</li>
|
||
<li><span class="codepoint">U+0026</span> AMPERSAND</li>
|
||
<li><span class="codepoint">U+0027</span> APOSTROPHE</li>
|
||
<li><span class="codepoint">U+0028</span> LEFT PARENTHESIS</li>
|
||
<li><span class="codepoint">U+0029</span> RIGHT PARENTHESIS</li>
|
||
<li><span class="codepoint">U+002A</span> ASTERISK</li>
|
||
<li><span class="codepoint">U+002B</span> PLUS SIGN</li>
|
||
<li><span class="codepoint">U+002C</span> COMMA</li>
|
||
<li><span class="codepoint">U+002D</span> HYPHEN-MINUS</li>
|
||
<li><span class="codepoint">U+002E</span> FULL STOP</li>
|
||
<li><span class="codepoint">U+002F</span> SLASH</li>
|
||
<li><span class="codepoint">U+0030</span> DIGIT ZERO</li>
|
||
<li><span class="codepoint">U+0031</span> DIGIT ONE</li>
|
||
<li><span class="codepoint">U+0032</span> DIGIT TWO</li>
|
||
<li><span class="codepoint">U+0033</span> DIGIT THREE</li>
|
||
<li><span class="codepoint">U+0034</span> DIGIT FOUR</li>
|
||
<li><span class="codepoint">U+0035</span> DIGIT FIVE</li>
|
||
<li><span class="codepoint">U+0036</span> DIGIT SIX</li>
|
||
<li><span class="codepoint">U+0037</span> DIGIT SEVEN</li>
|
||
<li><span class="codepoint">U+0038</span> DIGIT EIGHT</li>
|
||
<li><span class="codepoint">U+0039</span> DIGIT NINE</li>
|
||
<li><span class="codepoint">U+003A</span> COLON</li>
|
||
<li><span class="codepoint">U+003B</span> SEMICOLON</li>
|
||
<li><span class="codepoint">U+003C</span> LESS-THAN SIGN</li>
|
||
<li><span class="codepoint">U+003D</span> EQUAL SIGN</li>
|
||
<li><span class="codepoint">U+003E</span> GREATER-THAN SIGN</li>
|
||
<li><span class="codepoint">U+003F</span> QUESTION MARK</li>
|
||
<li><span class="codepoint">U+0040</span> AT SIGN</li>
|
||
<li><span class="codepoint">U+0041</span> LATIN CAPITAL LETTER A</li>
|
||
<li><span class="codepoint">U+0042</span> LATIN CAPITAL LETTER B</li>
|
||
<li><span class="codepoint">U+0043</span> LATIN CAPITAL LETTER C</li>
|
||
<li><span class="codepoint">U+0044</span> LATIN CAPITAL LETTER D</li>
|
||
<li><span class="codepoint">U+0045</span> LATIN CAPITAL LETTER E</li>
|
||
<li><span class="codepoint">U+0046</span> LATIN CAPITAL LETTER F</li>
|
||
<li><span class="codepoint">U+0047</span> LATIN CAPITAL LETTER G</li>
|
||
<li><span class="codepoint">U+0048</span> LATIN CAPITAL LETTER H</li>
|
||
<li><span class="codepoint">U+0049</span> LATIN CAPITAL LETTER I</li>
|
||
<li><span class="codepoint">U+004A</span> LATIN CAPITAL LETTER J</li>
|
||
<li><span class="codepoint">U+004B</span> LATIN CAPITAL LETTER K</li>
|
||
<li><span class="codepoint">U+004C</span> LATIN CAPITAL LETTER L</li>
|
||
<li><span class="codepoint">U+004D</span> LATIN CAPITAL LETTER M</li>
|
||
<li><span class="codepoint">U+004E</span> LATIN CAPITAL LETTER N</li>
|
||
<li><span class="codepoint">U+004F</span> LATIN CAPITAL LETTER O</li>
|
||
<li><span class="codepoint">U+0050</span> LATIN CAPITAL LETTER P</li>
|
||
<li><span class="codepoint">U+0051</span> LATIN CAPITAL LETTER Q</li>
|
||
<li><span class="codepoint">U+0052</span> LATIN CAPITAL LETTER R</li>
|
||
<li><span class="codepoint">U+0053</span> LATIN CAPITAL LETTER S</li>
|
||
<li><span class="codepoint">U+0054</span> LATIN CAPITAL LETTER T</li>
|
||
<li><span class="codepoint">U+0055</span> LATIN CAPITAL LETTER U</li>
|
||
<li><span class="codepoint">U+0056</span> LATIN CAPITAL LETTER V</li>
|
||
<li><span class="codepoint">U+0057</span> LATIN CAPITAL LETTER W</li>
|
||
<li><span class="codepoint">U+0058</span> LATIN CAPITAL LETTER X</li>
|
||
<li><span class="codepoint">U+0059</span> LATIN CAPITAL LETTER Y</li>
|
||
<li><span class="codepoint">U+005A</span> LATIN CAPITAL LETTER Z</li>
|
||
<li><span class="codepoint">U+005B</span> LEFT SQUARE BRACKET</li>
|
||
<li><span class="codepoint">U+005C</span> BACKSLASH</li>
|
||
<li><span class="codepoint">U+005D</span> RIGHT SQUARE BRACKET</li>
|
||
<li><span class="codepoint">U+005E</span> CIRCUMFLEX ACCENT</li>
|
||
<li><span class="codepoint">U+005F</span> LOW LINE</li>
|
||
<li><span class="codepoint">U+0060</span> GRAVE ACCENT</li>
|
||
<li><span class="codepoint">U+0061</span> LATIN SMALL LETTER A</li>
|
||
<li><span class="codepoint">U+0062</span> LATIN SMALL LETTER B</li>
|
||
<li><span class="codepoint">U+0063</span> LATIN SMALL LETTER C</li>
|
||
<li><span class="codepoint">U+0064</span> LATIN SMALL LETTER D</li>
|
||
<li><span class="codepoint">U+0065</span> LATIN SMALL LETTER E</li>
|
||
<li><span class="codepoint">U+0066</span> LATIN SMALL LETTER F</li>
|
||
<li><span class="codepoint">U+0067</span> LATIN SMALL LETTER G</li>
|
||
<li><span class="codepoint">U+0068</span> LATIN SMALL LETTER H</li>
|
||
<li><span class="codepoint">U+0069</span> LATIN SMALL LETTER I</li>
|
||
<li><span class="codepoint">U+006A</span> LATIN SMALL LETTER J</li>
|
||
<li><span class="codepoint">U+006B</span> LATIN SMALL LETTER K</li>
|
||
<li><span class="codepoint">U+006C</span> LATIN SMALL LETTER L</li>
|
||
<li><span class="codepoint">U+006D</span> LATIN SMALL LETTER M</li>
|
||
<li><span class="codepoint">U+006E</span> LATIN SMALL LETTER N</li>
|
||
<li><span class="codepoint">U+006F</span> LATIN SMALL LETTER O</li>
|
||
<li><span class="codepoint">U+0070</span> LATIN SMALL LETTER P</li>
|
||
<li><span class="codepoint">U+0071</span> LATIN SMALL LETTER Q</li>
|
||
<li><span class="codepoint">U+0072</span> LATIN SMALL LETTER R</li>
|
||
<li><span class="codepoint">U+0073</span> LATIN SMALL LETTER S</li>
|
||
<li><span class="codepoint">U+0074</span> LATIN SMALL LETTER T</li>
|
||
<li><span class="codepoint">U+0075</span> LATIN SMALL LETTER U</li>
|
||
<li><span class="codepoint">U+0076</span> LATIN SMALL LETTER V</li>
|
||
<li><span class="codepoint">U+0077</span> LATIN SMALL LETTER W</li>
|
||
<li><span class="codepoint">U+0078</span> LATIN SMALL LETTER X</li>
|
||
<li><span class="codepoint">U+0079</span> LATIN SMALL LETTER Y</li>
|
||
<li><span class="codepoint">U+007A</span> LATIN SMALL LETTER Z</li>
|
||
<li><span class="codepoint">U+007B</span> LEFT CURLY BRACKET</li>
|
||
<li><span class="codepoint">U+007C</span> VERTICAL BAR</li>
|
||
<li><span class="codepoint">U+007D</span> RIGHT CURLY BRACKET</li>
|
||
<li><span class="codepoint">U+007E</span> TILDE</li>
|
||
<li><span class="codepoint">U+00A0</span> NO-BREAK SPACE</li>
|
||
<li><span class="codepoint">U+00A1</span> INVERTED EXCLAMATION MARK</li>
|
||
<li><span class="codepoint">U+00A2</span> CENT SIGN</li>
|
||
<li><span class="codepoint">U+00A3</span> POUND SIGN</li>
|
||
<li><span class="codepoint">U+00A7</span> SECTION SIGN</li>
|
||
<li><span class="codepoint">U+00A9</span> COPYRIGHT SIGN</li>
|
||
<li><span class="codepoint">U+00AA</span> FEMININE ORDINAL INDICATOR</li>
|
||
<li><span class="codepoint">U+00AB</span> LEFT-POINTING DOUBLE ANGLE QUOTATION MARK</li>
|
||
<li><span class="codepoint">U+00AC</span> NOT SIGN</li>
|
||
<li><span class="codepoint">U+00AE</span> REGISTERED SIGN</li>
|
||
<li><span class="codepoint">U+00AF</span> MACRON</li>
|
||
<li><span class="codepoint">U+00B0</span> DEGREE SIGN</li>
|
||
<li><span class="codepoint">U+00B1</span> PLUS-MINUS SIGN</li>
|
||
<li><span class="codepoint">U+00B5</span> MICRO SIGN</li>
|
||
<li><span class="codepoint">U+00B6</span> PILCROW SIGN</li>
|
||
<li><span class="codepoint">U+00BA</span> MASCULINE ORDINAL INDICATOR</li>
|
||
<li><span class="codepoint">U+00BB</span> RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK</li>
|
||
<li><span class="codepoint">U+00BF</span> INVERTED QUESTION MARK</li>
|
||
<li><span class="codepoint">U+00C0</span> LATIN CAPITAL LETTER A WITH GRAVE</li>
|
||
<li><span class="codepoint">U+00C1</span> LATIN CAPITAL LETTER A WITH ACUTE</li>
|
||
<li><span class="codepoint">U+00C2</span> LATIN CAPITAL LETTER A WITH CIRCUMFLEX</li>
|
||
<li><span class="codepoint">U+00C4</span> LATIN CAPITAL LETTER A WITH DIAERESIS</li>
|
||
<li><span class="codepoint">U+00C6</span> LATIN CAPITAL LETTER AE</li>
|
||
<li><span class="codepoint">U+00C7</span> LATIN CAPITAL LETTER C WITH CEDILLA</li>
|
||
<li><span class="codepoint">U+00C8</span> LATIN CAPITAL LETTER E WITH GRAVE</li>
|
||
<li><span class="codepoint">U+00C9</span> LATIN CAPITAL LETTER E WITH ACUTE</li>
|
||
<li><span class="codepoint">U+00CA</span> LATIN CAPITAL LETTER E WITH CIRCUMFLEX</li>
|
||
<li><span class="codepoint">U+00CB</span> LATIN CAPITAL LETTER E WITH DIAERESIS</li>
|
||
<li><span class="codepoint">U+00CC</span> LATIN CAPITAL LETTER I WITH GRAVE</li>
|
||
<li><span class="codepoint">U+00CD</span> LATIN CAPITAL LETTER I WITH ACUTE</li>
|
||
<li><span class="codepoint">U+00CE</span> LATIN CAPITAL LETTER I WITH CIRCUMFLEX</li>
|
||
<li><span class="codepoint">U+00CF</span> LATIN CAPITAL LETTER I WITH DIAERESIS</li>
|
||
<li><span class="codepoint">U+00D1</span> LATIN CAPITAL LETTER N WITH TILDE</li>
|
||
<li><span class="codepoint">U+00D2</span> LATIN CAPITAL LETTER O WITH GRAVE</li>
|
||
<li><span class="codepoint">U+00D3</span> LATIN CAPITAL LETTER O WITH ACUTE</li>
|
||
<li><span class="codepoint">U+00D4</span> LATIN CAPITAL LETTER O WITH CIRCUMFLEX</li>
|
||
<li><span class="codepoint">U+00D6</span> LATIN CAPITAL LETTER O WITH DIAERESIS</li>
|
||
<li><span class="codepoint">U+00D7</span> MULTIPLICATION SIGN</li>
|
||
<li><span class="codepoint">U+00D9</span> LATIN CAPITAL LETTER U WITH GRAVE</li>
|
||
<li><span class="codepoint">U+00DA</span> LATIN CAPITAL LETTER U WITH ACUTE</li>
|
||
<li><span class="codepoint">U+00DB</span> LATIN CAPITAL LETTER U WITH CIRCUMFLEX</li>
|
||
<li><span class="codepoint">U+00DC</span> LATIN CAPITAL LETTER U WITH DIAERESIS</li>
|
||
<li><span class="codepoint">U+00DD</span> LATIN CAPITAL LETTER Y WITH ACUTE</li>
|
||
<li><span class="codepoint">U+00DF</span> LATIN SMALL LETTER SHARP S</li>
|
||
<li><span class="codepoint">U+00E0</span> LATIN SMALL LETTER A WITH GRAVE</li>
|
||
<li><span class="codepoint">U+00E1</span> LATIN SMALL LETTER A WITH ACUTE</li>
|
||
<li><span class="codepoint">U+00E2</span> LATIN SMALL LETTER A WITH CIRCUMFLEX</li>
|
||
<li><span class="codepoint">U+00E4</span> LATIN SMALL LETTER A WITH DIAERESIS</li>
|
||
<li><span class="codepoint">U+00E6</span> LATIN SMALL LETTER AE</li>
|
||
<li><span class="codepoint">U+00E7</span> LATIN SMALL LETTER C WITH CEDILLA</li>
|
||
<li><span class="codepoint">U+00E8</span> LATIN SMALL LETTER E WITH GRAVE</li>
|
||
<li><span class="codepoint">U+00E9</span> LATIN SMALL LETTER E WITH ACUTE</li>
|
||
<li><span class="codepoint">U+00EA</span> LATIN SMALL LETTER E WITH CIRCUMFLEX</li>
|
||
<li><span class="codepoint">U+00EB</span> LATIN SMALL LETTER E WITH DIAERESIS</li>
|
||
<li><span class="codepoint">U+00EC</span> LATIN SMALL LETTER I WITH GRAVE</li>
|
||
<li><span class="codepoint">U+00ED</span> LATIN SMALL LETTER I WITH ACUTE</li>
|
||
<li><span class="codepoint">U+00EE</span> LATIN SMALL LETTER I WITH CIRCUMFLEX</li>
|
||
<li><span class="codepoint">U+00EF</span> LATIN SMALL LETTER I WITH DIAERESIS</li>
|
||
<li><span class="codepoint">U+00F1</span> LATIN SMALL LETTER N WITH TILDE</li>
|
||
<li><span class="codepoint">U+00F2</span> LATIN SMALL LETTER O WITH GRAVE</li>
|
||
<li><span class="codepoint">U+00F3</span> LATIN SMALL LETTER O WITH ACUTE</li>
|
||
<li><span class="codepoint">U+00F4</span> LATIN SMALL LETTER O WITH CIRCUMFLEX</li>
|
||
<li><span class="codepoint">U+00F6</span> LATIN SMALL LETTER O WITH DIAERESIS</li>
|
||
<li><span class="codepoint">U+00F7</span> DIVISION SIGN</li>
|
||
<li><span class="codepoint">U+00F9</span> LATIN SMALL LETTER U WITH GRAVE</li>
|
||
<li><span class="codepoint">U+00FA</span> LATIN SMALL LETTER U WITH ACUTE</li>
|
||
<li><span class="codepoint">U+00FB</span> LATIN SMALL LETTER U WITH CIRCUMFLEX</li>
|
||
<li><span class="codepoint">U+00FC</span> LATIN SMALL LETTER U WITH DIAERESIS</li>
|
||
<li><span class="codepoint">U+00FD</span> LATIN SMALL LETTER Y WITH ACUTE</li>
|
||
<li><span class="codepoint">U+00FF</span> LATIN SMALL LETTER Y WITH DIAERESIS</li>
|
||
<li><span class="codepoint">U+0100</span> LATIN CAPITAL LETTER A WITH MACRON</li>
|
||
<li><span class="codepoint">U+0101</span> LATIN SMALL LETTER A WITH MACRON</li>
|
||
<li><span class="codepoint">U+0112</span> LATIN CAPITAL LETTER E WITH MACRON</li>
|
||
<li><span class="codepoint">U+0113</span> LATIN SMALL LETTER E WITH MACRON</li>
|
||
<li><span class="codepoint">U+012A</span> LATIN CAPITAL LETTER I WITH MACRON</li>
|
||
<li><span class="codepoint">U+012B</span> LATIN SMALL LETTER I WITH MACRON</li>
|
||
<li><span class="codepoint">U+014C</span> LATIN CAPITAL LETTER O WITH MACRON</li>
|
||
<li><span class="codepoint">U+014D</span> LATIN SMALL LETTER O WITH MACRON</li>
|
||
<li><span class="codepoint">U+0152</span> LATIN CAPITAL LIGATURE OE</li>
|
||
<li><span class="codepoint">U+0153</span> LATIN SMALL LIGATURE OE</li>
|
||
<li><span class="codepoint">U+016A</span> LATIN CAPITAL LETTER U WITH MACRON</li>
|
||
<li><span class="codepoint">U+016B</span> LATIN SMALL LETTER U WITH MACRON</li>
|
||
<li><span class="codepoint">U+0174</span> LATIN CAPITAL LETTER W WITH CIRCUMFLEX</li>
|
||
<li><span class="codepoint">U+0175</span> LATIN SMALL LETTER W WITH CIRCUMFLEX</li>
|
||
<li><span class="codepoint">U+0176</span> LATIN CAPITAL LETTER Y WITH CIRCUMFLEX</li>
|
||
<li><span class="codepoint">U+0177</span> LATIN SMALL LETTER Y WITH CIRCUMFLEX</li>
|
||
<li><span class="codepoint">U+0178</span> LATIN CAPITAL LETTER Y WITH DIAERESIS</li>
|
||
<li><span class="codepoint">U+0232</span> LATIN CAPITAL LETTER Y WITH MACRON</li>
|
||
<li><span class="codepoint">U+0233</span> LATIN SMALL LETTER Y WITH MACRON</li>
|
||
<li><span class="codepoint">U+0300</span> COMBINING GRAVE ACCENT</li>
|
||
<li><span class="codepoint">U+0301</span> COMBINING ACUTE ACCENT</li>
|
||
<li><span class="codepoint">U+0302</span> COMBINING CIRCUMFLEX ACCENT</li>
|
||
<li><span class="codepoint">U+0304</span> COMBINING MACRON</li>
|
||
<li><span class="codepoint">U+0308</span> COMBINING DIAERESIS</li>
|
||
<li><span class="codepoint">U+0327</span> COMBINING CEDILLA</li>
|
||
<li><span class="codepoint">U+1E80</span> LATIN CAPITAL LETTER W WITH GRAVE</li>
|
||
<li><span class="codepoint">U+1E81</span> LATIN SMALL LETTER W WITH GRAVE</li>
|
||
<li><span class="codepoint">U+1E82</span> LATIN CAPITAL LETTER W WITH ACUTE</li>
|
||
<li><span class="codepoint">U+1E83</span> LATIN SMALL LETTER W WITH ACUTE</li>
|
||
<li><span class="codepoint">U+1E84</span> LATIN CAPITAL LETTER W WITH DIAERESIS</li>
|
||
<li><span class="codepoint">U+1E85</span> LATIN SMALL LETTER W WITH DIAERESIS</li>
|
||
<li><span class="codepoint">U+1E9E</span> LATIN CAPITAL LETTER SHARP S</li>
|
||
<li><span class="codepoint">U+1EF2</span> LATIN CAPITAL LETTER Y WITH GRAVE</li>
|
||
<li><span class="codepoint">U+1EF3</span> LATIN SMALL LETTER Y WITH GRAVE</li>
|
||
<li><span class="codepoint">U+2013</span> EN DASH</li>
|
||
<li><span class="codepoint">U+2014</span> EM DASH</li>
|
||
<li><span class="codepoint">U+2018</span> LEFT SINGLE QUOTATION MARK</li>
|
||
<li><span class="codepoint">U+2019</span> RIGHT SINGLE QUOTATION MARK</li>
|
||
<li><span class="codepoint">U+201A</span> SINGLE LOW-9 QUOTATION MARK</li>
|
||
<li><span class="codepoint">U+201C</span> LEFT DOUBLE QUOTATION MARK</li>
|
||
<li><span class="codepoint">U+201D</span> RIGHT DOUBLE QUOTATION MARK</li>
|
||
<li><span class="codepoint">U+201E</span> DOUBLE LOW-9 QUOTATION MARK</li>
|
||
<li><span class="codepoint">U+2022</span> BULLET</li>
|
||
<li><span class="codepoint">U+2026</span> HORIZONTAL ELLIPSIS</li>
|
||
<li><span class="codepoint">U+202F</span> NARROW NO-BREAK SPACE</li>
|
||
<li><span class="codepoint">U+2030</span> PER MILLE SIGN</li>
|
||
<li><span class="codepoint">U+2032</span> PRIME</li>
|
||
<li><span class="codepoint">U+2033</span> DOUBLE PRIME</li>
|
||
<li><span class="codepoint">U+2039</span> SINGLE LEFT-POINTING ANGLE QUOTATION MARK</li>
|
||
<li><span class="codepoint">U+203A</span> SINGLE RIGHT-POINTING ANGLE QUOTATION MARK</li>
|
||
<li><span class="codepoint">U+204A</span> TIRONIAN SIGN ET</li>
|
||
<li><span class="codepoint">U+20AC</span> EURO SIGN</li>
|
||
<li><span class="codepoint">U+2122</span> TRADE MARK SIGN</li>
|
||
<li><span class="codepoint">U+2212</span> MINUS SIGN</li>
|
||
<li><span class="codepoint">U+221A</span> SQUARE ROOT</li>
|
||
<li><span class="codepoint">U+2248</span> ALMOST EQUAL TO</li>
|
||
<li><span class="codepoint">U+2260</span> NOT EQUAL TO</li>
|
||
<li><span class="codepoint">U+2264</span> LESS-THAN OR EQUAL TO</li>
|
||
<li><span class="codepoint">U+2265</span> GREATER-THAN OR EQUAL TO</li>
|
||
<li><span class="codepoint">U+22C5</span> DOT OPERATOR</li>
|
||
<li><span class="codepoint">U+2713</span> CHECK MARK</li>
|
||
<li><span class="codepoint">U+2717</span> BALLOT X</li>
|
||
</ul>
|
||
</body>
|
||
</html>
|