Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 | 1x | export default {
// These are the standard 20 characters in ogham
individual: {
' ': {
char: ' ',
code: 5760
},
b: {
char: 'ᚁ',
code: 5761
},
l: {
char: 'ᚂ',
code: 5762
},
f: {
char: 'ᚃ',
code: 5763
},
s: {
char: 'ᚄ',
code: 5764
},
n: {
char: 'ᚅ',
code: 5765
},
h: {
char: 'ᚆ',
code: 5766
},
d: {
char: 'ᚇ',
code: 5767
},
t: {
char: 'ᚈ',
code: 5768
},
c: {
char: 'ᚉ',
code: 5769
},
q: {
char: 'ᚊ',
code: 5770
},
m: {
char: 'ᚋ',
code: 5771
},
g: {
char: 'ᚌ',
code: 5772
},
z: {
char: 'ᚎ',
code: 5774
},
r: {
char: 'ᚏ',
code: 5775
},
a: {
char: 'ᚐ',
code: 5776
},
o: {
char: 'ᚑ',
code: 5777
},
u: {
char: 'ᚒ',
code: 5778
},
e: {
char: 'ᚓ',
code: 5779
},
i: {
char: 'ᚔ',
code: 5780
},
p: {
char: 'ᚚ',
code: 5786
}
},
// These are part of the aicme forfeda and are treated as opt-in by the module
// https://en.wikipedia.org/wiki/Forfeda#The_aicme_forfeda
combination: {
ea: {
char: 'ᚕ',
code: 5781
},
oi: {
char: 'ᚖ',
code: 5782
},
ui: {
char: 'ᚗ',
code: 5783
},
// ng: {
// char: "ᚍ",
// code: 5773
// },
ia: {
char: 'ᚘ',
code: 5784
},
ae: {
char: 'ᚙ',
code: 5785
}
},
head: {
char: '᚛',
code: 5787
},
tail: {
char: '᚜',
code: 5788
}
};
|