diff options
Diffstat (limited to 'modules/unicode')
-rw-r--r-- | modules/unicode/index.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/unicode/index.html b/modules/unicode/index.html index e44a96e..c9b1fe5 100644 --- a/modules/unicode/index.html +++ b/modules/unicode/index.html @@ -65,6 +65,11 @@ function populateCharacter(div, row) { div.appendChild(span); span = document.createElement("span"); + span.setAttribute("style", "display: inline-block; width: 2em;"); + span.appendChild(document.createTextNode(String.fromCodePoint(parseInt(row[0], 16)))); + div.appendChild(span); + + span = document.createElement("span"); span.appendChild(document.createTextNode(row[1])); div.appendChild(span); } |