In [1]:
RawUnicodeData=readdlm(download("http://www.unicode.org/Public/UCD/latest/ucd/EastAsianWidth.txt"), ';', String)


  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100  863k  100  863k    0     0  1222k      0 --:--:-- --:--:-- --:--:-- 1221k
Out[1]:
24432x2 Array{String,2}:
 "0000"            "N "
 "0001"            "N "
 "0002"            "N "
 "0003"            "N "
 "0004"            "N "
 "0005"            "N "
 "0006"            "N "
 "0007"            "N "
 "0008"            "N "
 "0009"            "N "
 "000A"            "N "
 "000B"            "N "
 "000C"            "N "
 ⋮                     
 "E01E7"           "A "
 "E01E8"           "A "
 "E01E9"           "A "
 "E01EA"           "A "
 "E01EB"           "A "
 "E01EC"           "A "
 "E01ED"           "A "
 "E01EE"           "A "
 "E01EF"           "A "
 "F0000..FFFFD"    "A "
 "100000..10FFFD"  "A "
 ""                ""  

In [2]:
#UAX11 - http://www.unicode.org/reports/tr11/
widthmap={
    "A "=>0, #ambiguous
    "W "=>2, #wide
    "F "=>2, #full
    "N "=>0, #neutral
    "Na "=>1, #narrow
    "H "=>1, #half
}


Out[2]:
Dict{Any,Any} with 6 entries:
  "A "  => 0
  "W "  => 2
  "F "  => 2
  "N "  => 0
  "Na " => 1
  "H "  => 1

In [16]:
idx=0
str=String[]
for i in 1:size(RawUnicodeData,1)
    codepoint = RawUnicodeData[i,1]
    length(codepoint)>0 || continue 
    if !in('.', codepoint) #Not a range
        thechar = char(uint(string("0x", codepoint)))
        width= charwidth(thechar)
        uniwidth=widthmap[RawUnicodeData[i,2]]
        uniwidth==0 && continue #Don't know
        if width!=uniwidth
            idx +=1
            push!(str, string(idx,". Codepoint [", codepoint, '(', thechar, ")](",
            "http://www.fileformat.info/info/unicode/char/",
            lowercase(codepoint), ") has charwidth ", width,
            " but Unicode width type ", RawUnicodeData[i,2],
            "which may be of width ", uniwidth))
        end
    end
end

In [17]:
#Write in Markdown
print(join(str, '\n'))


1. Codepoint [115A(ᅚ)](http://www.fileformat.info/info/unicode/char/115a) has charwidth 0 but Unicode width type W which may be of width 2
2. Codepoint [115B(ᅛ)](http://www.fileformat.info/info/unicode/char/115b) has charwidth 0 but Unicode width type W which may be of width 2
3. Codepoint [115C(ᅜ)](http://www.fileformat.info/info/unicode/char/115c) has charwidth 0 but Unicode width type W which may be of width 2
4. Codepoint [115D(ᅝ)](http://www.fileformat.info/info/unicode/char/115d) has charwidth 0 but Unicode width type W which may be of width 2
5. Codepoint [115E(ᅞ)](http://www.fileformat.info/info/unicode/char/115e) has charwidth 0 but Unicode width type W which may be of width 2
6. Codepoint [27EC(⟬)](http://www.fileformat.info/info/unicode/char/27ec) has charwidth 0 but Unicode width type Na which may be of width 1
7. Codepoint [27ED(⟭)](http://www.fileformat.info/info/unicode/char/27ed) has charwidth 0 but Unicode width type Na which may be of width 1
8. Codepoint [3099(゙)](http://www.fileformat.info/info/unicode/char/3099) has charwidth 0 but Unicode width type W which may be of width 2
9. Codepoint [309A(゚)](http://www.fileformat.info/info/unicode/char/309a) has charwidth 0 but Unicode width type W which may be of width 2
10. Codepoint [312D(ㄭ)](http://www.fileformat.info/info/unicode/char/312d) has charwidth 0 but Unicode width type W which may be of width 2
11. Codepoint [31B8(ㆸ)](http://www.fileformat.info/info/unicode/char/31b8) has charwidth 0 but Unicode width type W which may be of width 2
12. Codepoint [31B9(ㆹ)](http://www.fileformat.info/info/unicode/char/31b9) has charwidth 0 but Unicode width type W which may be of width 2
13. Codepoint [31BA(ㆺ)](http://www.fileformat.info/info/unicode/char/31ba) has charwidth 0 but Unicode width type W which may be of width 2
14. Codepoint [31C0(㇀)](http://www.fileformat.info/info/unicode/char/31c0) has charwidth 0 but Unicode width type W which may be of width 2
15. Codepoint [31C1(㇁)](http://www.fileformat.info/info/unicode/char/31c1) has charwidth 0 but Unicode width type W which may be of width 2
16. Codepoint [31C2(㇂)](http://www.fileformat.info/info/unicode/char/31c2) has charwidth 0 but Unicode width type W which may be of width 2
17. Codepoint [31C3(㇃)](http://www.fileformat.info/info/unicode/char/31c3) has charwidth 0 but Unicode width type W which may be of width 2
18. Codepoint [31C4(㇄)](http://www.fileformat.info/info/unicode/char/31c4) has charwidth 0 but Unicode width type W which may be of width 2
19. Codepoint [31C5(㇅)](http://www.fileformat.info/info/unicode/char/31c5) has charwidth 0 but Unicode width type W which may be of width 2
20. Codepoint [31C6(㇆)](http://www.fileformat.info/info/unicode/char/31c6) has charwidth 0 but Unicode width type W which may be of width 2
21. Codepoint [31C7(㇇)](http://www.fileformat.info/info/unicode/char/31c7) has charwidth 0 but Unicode width type W which may be of width 2
22. Codepoint [31C8(㇈)](http://www.fileformat.info/info/unicode/char/31c8) has charwidth 0 but Unicode width type W which may be of width 2
23. Codepoint [31C9(㇉)](http://www.fileformat.info/info/unicode/char/31c9) has charwidth 0 but Unicode width type W which may be of width 2
24. Codepoint [31CA(㇊)](http://www.fileformat.info/info/unicode/char/31ca) has charwidth 0 but Unicode width type W which may be of width 2
25. Codepoint [31CB(㇋)](http://www.fileformat.info/info/unicode/char/31cb) has charwidth 0 but Unicode width type W which may be of width 2
26. Codepoint [31CC(㇌)](http://www.fileformat.info/info/unicode/char/31cc) has charwidth 0 but Unicode width type W which may be of width 2
27. Codepoint [31CD(㇍)](http://www.fileformat.info/info/unicode/char/31cd) has charwidth 0 but Unicode width type W which may be of width 2
28. Codepoint [31CE(㇎)](http://www.fileformat.info/info/unicode/char/31ce) has charwidth 0 but Unicode width type W which may be of width 2
29. Codepoint [31CF(㇏)](http://www.fileformat.info/info/unicode/char/31cf) has charwidth 0 but Unicode width type W which may be of width 2
30. Codepoint [31D0(㇐)](http://www.fileformat.info/info/unicode/char/31d0) has charwidth 0 but Unicode width type W which may be of width 2
31. Codepoint [31D1(㇑)](http://www.fileformat.info/info/unicode/char/31d1) has charwidth 0 but Unicode width type W which may be of width 2
32. Codepoint [31D2(㇒)](http://www.fileformat.info/info/unicode/char/31d2) has charwidth 0 but Unicode width type W which may be of width 2
33. Codepoint [31D3(㇓)](http://www.fileformat.info/info/unicode/char/31d3) has charwidth 0 but Unicode width type W which may be of width 2
34. Codepoint [31D4(㇔)](http://www.fileformat.info/info/unicode/char/31d4) has charwidth 0 but Unicode width type W which may be of width 2
35. Codepoint [31D5(㇕)](http://www.fileformat.info/info/unicode/char/31d5) has charwidth 0 but Unicode width type W which may be of width 2
36. Codepoint [31D6(㇖)](http://www.fileformat.info/info/unicode/char/31d6) has charwidth 0 but Unicode width type W which may be of width 2
37. Codepoint [31D7(㇗)](http://www.fileformat.info/info/unicode/char/31d7) has charwidth 0 but Unicode width type W which may be of width 2
38. Codepoint [31D8(㇘)](http://www.fileformat.info/info/unicode/char/31d8) has charwidth 0 but Unicode width type W which may be of width 2
39. Codepoint [31D9(㇙)](http://www.fileformat.info/info/unicode/char/31d9) has charwidth 0 but Unicode width type W which may be of width 2
40. Codepoint [31DA(㇚)](http://www.fileformat.info/info/unicode/char/31da) has charwidth 0 but Unicode width type W which may be of width 2
41. Codepoint [31DB(㇛)](http://www.fileformat.info/info/unicode/char/31db) has charwidth 0 but Unicode width type W which may be of width 2
42. Codepoint [31DC(㇜)](http://www.fileformat.info/info/unicode/char/31dc) has charwidth 0 but Unicode width type W which may be of width 2
43. Codepoint [31DD(㇝)](http://www.fileformat.info/info/unicode/char/31dd) has charwidth 0 but Unicode width type W which may be of width 2
44. Codepoint [31DE(㇞)](http://www.fileformat.info/info/unicode/char/31de) has charwidth 0 but Unicode width type W which may be of width 2
45. Codepoint [31DF(㇟)](http://www.fileformat.info/info/unicode/char/31df) has charwidth 0 but Unicode width type W which may be of width 2
46. Codepoint [31E0(㇠)](http://www.fileformat.info/info/unicode/char/31e0) has charwidth 0 but Unicode width type W which may be of width 2
47. Codepoint [31E1(㇡)](http://www.fileformat.info/info/unicode/char/31e1) has charwidth 0 but Unicode width type W which may be of width 2
48. Codepoint [31E2(㇢)](http://www.fileformat.info/info/unicode/char/31e2) has charwidth 0 but Unicode width type W which may be of width 2
49. Codepoint [31E3(㇣)](http://www.fileformat.info/info/unicode/char/31e3) has charwidth 0 but Unicode width type W which may be of width 2
50. Codepoint [321D(㈝)](http://www.fileformat.info/info/unicode/char/321d) has charwidth 0 but Unicode width type W which may be of width 2
51. Codepoint [321E(㈞)](http://www.fileformat.info/info/unicode/char/321e) has charwidth 0 but Unicode width type W which may be of width 2
52. Codepoint [3244(㉄)](http://www.fileformat.info/info/unicode/char/3244) has charwidth 0 but Unicode width type W which may be of width 2
53. Codepoint [3245(㉅)](http://www.fileformat.info/info/unicode/char/3245) has charwidth 0 but Unicode width type W which may be of width 2
54. Codepoint [3246(㉆)](http://www.fileformat.info/info/unicode/char/3246) has charwidth 0 but Unicode width type W which may be of width 2
55. Codepoint [3247(㉇)](http://www.fileformat.info/info/unicode/char/3247) has charwidth 0 but Unicode width type W which may be of width 2
56. Codepoint [3250(㉐)](http://www.fileformat.info/info/unicode/char/3250) has charwidth 0 but Unicode width type W which may be of width 2
57. Codepoint [327C(㉼)](http://www.fileformat.info/info/unicode/char/327c) has charwidth 0 but Unicode width type W which may be of width 2
58. Codepoint [327D(㉽)](http://www.fileformat.info/info/unicode/char/327d) has charwidth 0 but Unicode width type W which may be of width 2
59. Codepoint [327E(㉾)](http://www.fileformat.info/info/unicode/char/327e) has charwidth 0 but Unicode width type W which may be of width 2
60. Codepoint [32CC(㋌)](http://www.fileformat.info/info/unicode/char/32cc) has charwidth 0 but Unicode width type W which may be of width 2
61. Codepoint [32CD(㋍)](http://www.fileformat.info/info/unicode/char/32cd) has charwidth 0 but Unicode width type W which may be of width 2
62. Codepoint [32CE(㋎)](http://www.fileformat.info/info/unicode/char/32ce) has charwidth 0 but Unicode width type W which may be of width 2
63. Codepoint [32CF(㋏)](http://www.fileformat.info/info/unicode/char/32cf) has charwidth 0 but Unicode width type W which may be of width 2
64. Codepoint [3377(㍷)](http://www.fileformat.info/info/unicode/char/3377) has charwidth 0 but Unicode width type W which may be of width 2
65. Codepoint [3378(㍸)](http://www.fileformat.info/info/unicode/char/3378) has charwidth 0 but Unicode width type W which may be of width 2
66. Codepoint [3379(㍹)](http://www.fileformat.info/info/unicode/char/3379) has charwidth 0 but Unicode width type W which may be of width 2
67. Codepoint [337A(㍺)](http://www.fileformat.info/info/unicode/char/337a) has charwidth 0 but Unicode width type W which may be of width 2
68. Codepoint [33DE(㏞)](http://www.fileformat.info/info/unicode/char/33de) has charwidth 0 but Unicode width type W which may be of width 2
69. Codepoint [33DF(㏟)](http://www.fileformat.info/info/unicode/char/33df) has charwidth 0 but Unicode width type W which may be of width 2
70. Codepoint [33FF(㏿)](http://www.fileformat.info/info/unicode/char/33ff) has charwidth 0 but Unicode width type W which may be of width 2
71. Codepoint [A960(ꥠ)](http://www.fileformat.info/info/unicode/char/a960) has charwidth 0 but Unicode width type W which may be of width 2
72. Codepoint [A961(ꥡ)](http://www.fileformat.info/info/unicode/char/a961) has charwidth 0 but Unicode width type W which may be of width 2
73. Codepoint [A962(ꥢ)](http://www.fileformat.info/info/unicode/char/a962) has charwidth 0 but Unicode width type W which may be of width 2
74. Codepoint [A963(ꥣ)](http://www.fileformat.info/info/unicode/char/a963) has charwidth 0 but Unicode width type W which may be of width 2
75. Codepoint [A964(ꥤ)](http://www.fileformat.info/info/unicode/char/a964) has charwidth 0 but Unicode width type W which may be of width 2
76. Codepoint [A965(ꥥ)](http://www.fileformat.info/info/unicode/char/a965) has charwidth 0 but Unicode width type W which may be of width 2
77. Codepoint [A966(ꥦ)](http://www.fileformat.info/info/unicode/char/a966) has charwidth 0 but Unicode width type W which may be of width 2
78. Codepoint [A967(ꥧ)](http://www.fileformat.info/info/unicode/char/a967) has charwidth 0 but Unicode width type W which may be of width 2
79. Codepoint [A968(ꥨ)](http://www.fileformat.info/info/unicode/char/a968) has charwidth 0 but Unicode width type W which may be of width 2
80. Codepoint [A969(ꥩ)](http://www.fileformat.info/info/unicode/char/a969) has charwidth 0 but Unicode width type W which may be of width 2
81. Codepoint [A96A(ꥪ)](http://www.fileformat.info/info/unicode/char/a96a) has charwidth 0 but Unicode width type W which may be of width 2
82. Codepoint [A96B(ꥫ)](http://www.fileformat.info/info/unicode/char/a96b) has charwidth 0 but Unicode width type W which may be of width 2
83. Codepoint [A96C(ꥬ)](http://www.fileformat.info/info/unicode/char/a96c) has charwidth 0 but Unicode width type W which may be of width 2
84. Codepoint [A96D(ꥭ)](http://www.fileformat.info/info/unicode/char/a96d) has charwidth 0 but Unicode width type W which may be of width 2
85. Codepoint [A96E(ꥮ)](http://www.fileformat.info/info/unicode/char/a96e) has charwidth 0 but Unicode width type W which may be of width 2
86. Codepoint [A96F(ꥯ)](http://www.fileformat.info/info/unicode/char/a96f) has charwidth 0 but Unicode width type W which may be of width 2
87. Codepoint [A970(ꥰ)](http://www.fileformat.info/info/unicode/char/a970) has charwidth 0 but Unicode width type W which may be of width 2
88. Codepoint [A971(ꥱ)](http://www.fileformat.info/info/unicode/char/a971) has charwidth 0 but Unicode width type W which may be of width 2
89. Codepoint [A972(ꥲ)](http://www.fileformat.info/info/unicode/char/a972) has charwidth 0 but Unicode width type W which may be of width 2
90. Codepoint [A973(ꥳ)](http://www.fileformat.info/info/unicode/char/a973) has charwidth 0 but Unicode width type W which may be of width 2
91. Codepoint [A974(ꥴ)](http://www.fileformat.info/info/unicode/char/a974) has charwidth 0 but Unicode width type W which may be of width 2
92. Codepoint [A975(ꥵ)](http://www.fileformat.info/info/unicode/char/a975) has charwidth 0 but Unicode width type W which may be of width 2
93. Codepoint [A976(ꥶ)](http://www.fileformat.info/info/unicode/char/a976) has charwidth 0 but Unicode width type W which may be of width 2
94. Codepoint [A977(ꥷ)](http://www.fileformat.info/info/unicode/char/a977) has charwidth 0 but Unicode width type W which may be of width 2
95. Codepoint [A978(ꥸ)](http://www.fileformat.info/info/unicode/char/a978) has charwidth 0 but Unicode width type W which may be of width 2
96. Codepoint [A979(ꥹ)](http://www.fileformat.info/info/unicode/char/a979) has charwidth 0 but Unicode width type W which may be of width 2
97. Codepoint [A97A(ꥺ)](http://www.fileformat.info/info/unicode/char/a97a) has charwidth 0 but Unicode width type W which may be of width 2
98. Codepoint [A97B(ꥻ)](http://www.fileformat.info/info/unicode/char/a97b) has charwidth 0 but Unicode width type W which may be of width 2
99. Codepoint [A97C(ꥼ)](http://www.fileformat.info/info/unicode/char/a97c) has charwidth 0 but Unicode width type W which may be of width 2
100. Codepoint [FA2E(郞)](http://www.fileformat.info/info/unicode/char/fa2e) has charwidth 0 but Unicode width type W which may be of width 2
101. Codepoint [FA2F(隷)](http://www.fileformat.info/info/unicode/char/fa2f) has charwidth 0 but Unicode width type W which may be of width 2
102. Codepoint [FA6B(恵)](http://www.fileformat.info/info/unicode/char/fa6b) has charwidth 0 but Unicode width type W which may be of width 2
103. Codepoint [FA6C(𤋮)](http://www.fileformat.info/info/unicode/char/fa6c) has charwidth 0 but Unicode width type W which may be of width 2
104. Codepoint [FA6D(舘)](http://www.fileformat.info/info/unicode/char/fa6d) has charwidth 0 but Unicode width type W which may be of width 2
105. Codepoint [FA70(並)](http://www.fileformat.info/info/unicode/char/fa70) has charwidth 0 but Unicode width type W which may be of width 2
106. Codepoint [FA71(况)](http://www.fileformat.info/info/unicode/char/fa71) has charwidth 0 but Unicode width type W which may be of width 2
107. Codepoint [FA72(全)](http://www.fileformat.info/info/unicode/char/fa72) has charwidth 0 but Unicode width type W which may be of width 2
108. Codepoint [FA73(侀)](http://www.fileformat.info/info/unicode/char/fa73) has charwidth 0 but Unicode width type W which may be of width 2
109. Codepoint [FA74(充)](http://www.fileformat.info/info/unicode/char/fa74) has charwidth 0 but Unicode width type W which may be of width 2
110. Codepoint [FA75(冀)](http://www.fileformat.info/info/unicode/char/fa75) has charwidth 0 but Unicode width type W which may be of width 2
111. Codepoint [FA76(勇)](http://www.fileformat.info/info/unicode/char/fa76) has charwidth 0 but Unicode width type W which may be of width 2
112. Codepoint [FA77(勺)](http://www.fileformat.info/info/unicode/char/fa77) has charwidth 0 but Unicode width type W which may be of width 2
113. Codepoint [FA78(喝)](http://www.fileformat.info/info/unicode/char/fa78) has charwidth 0 but Unicode width type W which may be of width 2
114. Codepoint [FA79(啕)](http://www.fileformat.info/info/unicode/char/fa79) has charwidth 0 but Unicode width type W which may be of width 2
115. Codepoint [FA7A(喙)](http://www.fileformat.info/info/unicode/char/fa7a) has charwidth 0 but Unicode width type W which may be of width 2
116. Codepoint [FA7B(嗢)](http://www.fileformat.info/info/unicode/char/fa7b) has charwidth 0 but Unicode width type W which may be of width 2
117. Codepoint [FA7C(塚)](http://www.fileformat.info/info/unicode/char/fa7c) has charwidth 0 but Unicode width type W which may be of width 2
118. Codepoint [FA7D(墳)](http://www.fileformat.info/info/unicode/char/fa7d) has charwidth 0 but Unicode width type W which may be of width 2
119. Codepoint [FA7E(奄)](http://www.fileformat.info/info/unicode/char/fa7e) has charwidth 0 but Unicode width type W which may be of width 2
120. Codepoint [FA7F(奔)](http://www.fileformat.info/info/unicode/char/fa7f) has charwidth 0 but Unicode width type W which may be of width 2
121. Codepoint [FA80(婢)](http://www.fileformat.info/info/unicode/char/fa80) has charwidth 0 but Unicode width type W which may be of width 2
122. Codepoint [FA81(嬨)](http://www.fileformat.info/info/unicode/char/fa81) has charwidth 0 but Unicode width type W which may be of width 2
123. Codepoint [FA82(廒)](http://www.fileformat.info/info/unicode/char/fa82) has charwidth 0 but Unicode width type W which may be of width 2
124. Codepoint [FA83(廙)](http://www.fileformat.info/info/unicode/char/fa83) has charwidth 0 but Unicode width type W which may be of width 2
125. Codepoint [FA84(彩)](http://www.fileformat.info/info/unicode/char/fa84) has charwidth 0 but Unicode width type W which may be of width 2
126. Codepoint [FA85(徭)](http://www.fileformat.info/info/unicode/char/fa85) has charwidth 0 but Unicode width type W which may be of width 2
127. Codepoint [FA86(惘)](http://www.fileformat.info/info/unicode/char/fa86) has charwidth 0 but Unicode width type W which may be of width 2
128. Codepoint [FA87(慎)](http://www.fileformat.info/info/unicode/char/fa87) has charwidth 0 but Unicode width type W which may be of width 2
129. Codepoint [FA88(愈)](http://www.fileformat.info/info/unicode/char/fa88) has charwidth 0 but Unicode width type W which may be of width 2
130. Codepoint [FA89(憎)](http://www.fileformat.info/info/unicode/char/fa89) has charwidth 0 but Unicode width type W which may be of width 2
131. Codepoint [FA8A(慠)](http://www.fileformat.info/info/unicode/char/fa8a) has charwidth 0 but Unicode width type W which may be of width 2
132. Codepoint [FA8B(懲)](http://www.fileformat.info/info/unicode/char/fa8b) has charwidth 0 but Unicode width type W which may be of width 2
133. Codepoint [FA8C(戴)](http://www.fileformat.info/info/unicode/char/fa8c) has charwidth 0 but Unicode width type W which may be of width 2
134. Codepoint [FA8D(揄)](http://www.fileformat.info/info/unicode/char/fa8d) has charwidth 0 but Unicode width type W which may be of width 2
135. Codepoint [FA8E(搜)](http://www.fileformat.info/info/unicode/char/fa8e) has charwidth 0 but Unicode width type W which may be of width 2
136. Codepoint [FA8F(摒)](http://www.fileformat.info/info/unicode/char/fa8f) has charwidth 0 but Unicode width type W which may be of width 2
137. Codepoint [FA90(敖)](http://www.fileformat.info/info/unicode/char/fa90) has charwidth 0 but Unicode width type W which may be of width 2
138. Codepoint [FA91(晴)](http://www.fileformat.info/info/unicode/char/fa91) has charwidth 0 but Unicode width type W which may be of width 2
139. Codepoint [FA92(朗)](http://www.fileformat.info/info/unicode/char/fa92) has charwidth 0 but Unicode width type W which may be of width 2
140. Codepoint [FA93(望)](http://www.fileformat.info/info/unicode/char/fa93) has charwidth 0 but Unicode width type W which may be of width 2
141. Codepoint [FA94(杖)](http://www.fileformat.info/info/unicode/char/fa94) has charwidth 0 but Unicode width type W which may be of width 2
142. Codepoint [FA95(歹)](http://www.fileformat.info/info/unicode/char/fa95) has charwidth 0 but Unicode width type W which may be of width 2
143. Codepoint [FA96(殺)](http://www.fileformat.info/info/unicode/char/fa96) has charwidth 0 but Unicode width type W which may be of width 2
144. Codepoint [FA97(流)](http://www.fileformat.info/info/unicode/char/fa97) has charwidth 0 but Unicode width type W which may be of width 2
145. Codepoint [FA98(滛)](http://www.fileformat.info/info/unicode/char/fa98) has charwidth 0 but Unicode width type W which may be of width 2
146. Codepoint [FA99(滋)](http://www.fileformat.info/info/unicode/char/fa99) has charwidth 0 but Unicode width type W which may be of width 2
147. Codepoint [FA9A(漢)](http://www.fileformat.info/info/unicode/char/fa9a) has charwidth 0 but Unicode width type W which may be of width 2
148. Codepoint [FA9B(瀞)](http://www.fileformat.info/info/unicode/char/fa9b) has charwidth 0 but Unicode width type W which may be of width 2
149. Codepoint [FA9C(煮)](http://www.fileformat.info/info/unicode/char/fa9c) has charwidth 0 but Unicode width type W which may be of width 2
150. Codepoint [FA9D(瞧)](http://www.fileformat.info/info/unicode/char/fa9d) has charwidth 0 but Unicode width type W which may be of width 2
151. Codepoint [FA9E(爵)](http://www.fileformat.info/info/unicode/char/fa9e) has charwidth 0 but Unicode width type W which may be of width 2
152. Codepoint [FA9F(犯)](http://www.fileformat.info/info/unicode/char/fa9f) has charwidth 0 but Unicode width type W which may be of width 2
153. Codepoint [FAA0(猪)](http://www.fileformat.info/info/unicode/char/faa0) has charwidth 0 but Unicode width type W which may be of width 2
154. Codepoint [FAA1(瑱)](http://www.fileformat.info/info/unicode/char/faa1) has charwidth 0 but Unicode width type W which may be of width 2
155. Codepoint [FAA2(甆)](http://www.fileformat.info/info/unicode/char/faa2) has charwidth 0 but Unicode width type W which may be of width 2
156. Codepoint [FAA3(画)](http://www.fileformat.info/info/unicode/char/faa3) has charwidth 0 but Unicode width type W which may be of width 2
157. Codepoint [FAA4(瘝)](http://www.fileformat.info/info/unicode/char/faa4) has charwidth 0 but Unicode width type W which may be of width 2
158. Codepoint [FAA5(瘟)](http://www.fileformat.info/info/unicode/char/faa5) has charwidth 0 but Unicode width type W which may be of width 2
159. Codepoint [FAA6(益)](http://www.fileformat.info/info/unicode/char/faa6) has charwidth 0 but Unicode width type W which may be of width 2
160. Codepoint [FAA7(盛)](http://www.fileformat.info/info/unicode/char/faa7) has charwidth 0 but Unicode width type W which may be of width 2
161. Codepoint [FAA8(直)](http://www.fileformat.info/info/unicode/char/faa8) has charwidth 0 but Unicode width type W which may be of width 2
162. Codepoint [FAA9(睊)](http://www.fileformat.info/info/unicode/char/faa9) has charwidth 0 but Unicode width type W which may be of width 2
163. Codepoint [FAAA(着)](http://www.fileformat.info/info/unicode/char/faaa) has charwidth 0 but Unicode width type W which may be of width 2
164. Codepoint [FAAB(磌)](http://www.fileformat.info/info/unicode/char/faab) has charwidth 0 but Unicode width type W which may be of width 2
165. Codepoint [FAAC(窱)](http://www.fileformat.info/info/unicode/char/faac) has charwidth 0 but Unicode width type W which may be of width 2
166. Codepoint [FAAD(節)](http://www.fileformat.info/info/unicode/char/faad) has charwidth 0 but Unicode width type W which may be of width 2
167. Codepoint [FAAE(类)](http://www.fileformat.info/info/unicode/char/faae) has charwidth 0 but Unicode width type W which may be of width 2
168. Codepoint [FAAF(絛)](http://www.fileformat.info/info/unicode/char/faaf) has charwidth 0 but Unicode width type W which may be of width 2
169. Codepoint [FAB0(練)](http://www.fileformat.info/info/unicode/char/fab0) has charwidth 0 but Unicode width type W which may be of width 2
170. Codepoint [FAB1(缾)](http://www.fileformat.info/info/unicode/char/fab1) has charwidth 0 but Unicode width type W which may be of width 2
171. Codepoint [FAB2(者)](http://www.fileformat.info/info/unicode/char/fab2) has charwidth 0 but Unicode width type W which may be of width 2
172. Codepoint [FAB3(荒)](http://www.fileformat.info/info/unicode/char/fab3) has charwidth 0 but Unicode width type W which may be of width 2
173. Codepoint [FAB4(華)](http://www.fileformat.info/info/unicode/char/fab4) has charwidth 0 but Unicode width type W which may be of width 2
174. Codepoint [FAB5(蝹)](http://www.fileformat.info/info/unicode/char/fab5) has charwidth 0 but Unicode width type W which may be of width 2
175. Codepoint [FAB6(襁)](http://www.fileformat.info/info/unicode/char/fab6) has charwidth 0 but Unicode width type W which may be of width 2
176. Codepoint [FAB7(覆)](http://www.fileformat.info/info/unicode/char/fab7) has charwidth 0 but Unicode width type W which may be of width 2
177. Codepoint [FAB8(視)](http://www.fileformat.info/info/unicode/char/fab8) has charwidth 0 but Unicode width type W which may be of width 2
178. Codepoint [FAB9(調)](http://www.fileformat.info/info/unicode/char/fab9) has charwidth 0 but Unicode width type W which may be of width 2
179. Codepoint [FABA(諸)](http://www.fileformat.info/info/unicode/char/faba) has charwidth 0 but Unicode width type W which may be of width 2
180. Codepoint [FABB(請)](http://www.fileformat.info/info/unicode/char/fabb) has charwidth 0 but Unicode width type W which may be of width 2
181. Codepoint [FABC(謁)](http://www.fileformat.info/info/unicode/char/fabc) has charwidth 0 but Unicode width type W which may be of width 2
182. Codepoint [FABD(諾)](http://www.fileformat.info/info/unicode/char/fabd) has charwidth 0 but Unicode width type W which may be of width 2
183. Codepoint [FABE(諭)](http://www.fileformat.info/info/unicode/char/fabe) has charwidth 0 but Unicode width type W which may be of width 2
184. Codepoint [FABF(謹)](http://www.fileformat.info/info/unicode/char/fabf) has charwidth 0 but Unicode width type W which may be of width 2
185. Codepoint [FAC0(變)](http://www.fileformat.info/info/unicode/char/fac0) has charwidth 0 but Unicode width type W which may be of width 2
186. Codepoint [FAC1(贈)](http://www.fileformat.info/info/unicode/char/fac1) has charwidth 0 but Unicode width type W which may be of width 2
187. Codepoint [FAC2(輸)](http://www.fileformat.info/info/unicode/char/fac2) has charwidth 0 but Unicode width type W which may be of width 2
188. Codepoint [FAC3(遲)](http://www.fileformat.info/info/unicode/char/fac3) has charwidth 0 but Unicode width type W which may be of width 2
189. Codepoint [FAC4(醙)](http://www.fileformat.info/info/unicode/char/fac4) has charwidth 0 but Unicode width type W which may be of width 2
190. Codepoint [FAC5(鉶)](http://www.fileformat.info/info/unicode/char/fac5) has charwidth 0 but Unicode width type W which may be of width 2
191. Codepoint [FAC6(陼)](http://www.fileformat.info/info/unicode/char/fac6) has charwidth 0 but Unicode width type W which may be of width 2
192. Codepoint [FAC7(難)](http://www.fileformat.info/info/unicode/char/fac7) has charwidth 0 but Unicode width type W which may be of width 2
193. Codepoint [FAC8(靖)](http://www.fileformat.info/info/unicode/char/fac8) has charwidth 0 but Unicode width type W which may be of width 2
194. Codepoint [FAC9(韛)](http://www.fileformat.info/info/unicode/char/fac9) has charwidth 0 but Unicode width type W which may be of width 2
195. Codepoint [FACA(響)](http://www.fileformat.info/info/unicode/char/faca) has charwidth 0 but Unicode width type W which may be of width 2
196. Codepoint [FACB(頋)](http://www.fileformat.info/info/unicode/char/facb) has charwidth 0 but Unicode width type W which may be of width 2
197. Codepoint [FACC(頻)](http://www.fileformat.info/info/unicode/char/facc) has charwidth 0 but Unicode width type W which may be of width 2
198. Codepoint [FACD(鬒)](http://www.fileformat.info/info/unicode/char/facd) has charwidth 0 but Unicode width type W which may be of width 2
199. Codepoint [FACE(龜)](http://www.fileformat.info/info/unicode/char/face) has charwidth 0 but Unicode width type W which may be of width 2
200. Codepoint [FACF(𢡊)](http://www.fileformat.info/info/unicode/char/facf) has charwidth 0 but Unicode width type W which may be of width 2
201. Codepoint [FAD0(𢡄)](http://www.fileformat.info/info/unicode/char/fad0) has charwidth 0 but Unicode width type W which may be of width 2
202. Codepoint [FAD1(𣏕)](http://www.fileformat.info/info/unicode/char/fad1) has charwidth 0 but Unicode width type W which may be of width 2
203. Codepoint [FAD2(㮝)](http://www.fileformat.info/info/unicode/char/fad2) has charwidth 0 but Unicode width type W which may be of width 2
204. Codepoint [FAD3(䀘)](http://www.fileformat.info/info/unicode/char/fad3) has charwidth 0 but Unicode width type W which may be of width 2
205. Codepoint [FAD4(䀹)](http://www.fileformat.info/info/unicode/char/fad4) has charwidth 0 but Unicode width type W which may be of width 2
206. Codepoint [FAD5(𥉉)](http://www.fileformat.info/info/unicode/char/fad5) has charwidth 0 but Unicode width type W which may be of width 2
207. Codepoint [FAD6(𥳐)](http://www.fileformat.info/info/unicode/char/fad6) has charwidth 0 but Unicode width type W which may be of width 2
208. Codepoint [FAD7(𧻓)](http://www.fileformat.info/info/unicode/char/fad7) has charwidth 0 but Unicode width type W which may be of width 2
209. Codepoint [FAD8(齃)](http://www.fileformat.info/info/unicode/char/fad8) has charwidth 0 but Unicode width type W which may be of width 2
210. Codepoint [FAD9(龎)](http://www.fileformat.info/info/unicode/char/fad9) has charwidth 0 but Unicode width type W which may be of width 2
211. Codepoint [FE10(︐)](http://www.fileformat.info/info/unicode/char/fe10) has charwidth 0 but Unicode width type W which may be of width 2
212. Codepoint [FE11(︑)](http://www.fileformat.info/info/unicode/char/fe11) has charwidth 0 but Unicode width type W which may be of width 2
213. Codepoint [FE12(︒)](http://www.fileformat.info/info/unicode/char/fe12) has charwidth 0 but Unicode width type W which may be of width 2
214. Codepoint [FE13(︓)](http://www.fileformat.info/info/unicode/char/fe13) has charwidth 0 but Unicode width type W which may be of width 2
215. Codepoint [FE14(︔)](http://www.fileformat.info/info/unicode/char/fe14) has charwidth 0 but Unicode width type W which may be of width 2
216. Codepoint [FE15(︕)](http://www.fileformat.info/info/unicode/char/fe15) has charwidth 0 but Unicode width type W which may be of width 2
217. Codepoint [FE16(︖)](http://www.fileformat.info/info/unicode/char/fe16) has charwidth 0 but Unicode width type W which may be of width 2
218. Codepoint [FE17(︗)](http://www.fileformat.info/info/unicode/char/fe17) has charwidth 0 but Unicode width type W which may be of width 2
219. Codepoint [FE18(︘)](http://www.fileformat.info/info/unicode/char/fe18) has charwidth 0 but Unicode width type W which may be of width 2
220. Codepoint [FE19(︙)](http://www.fileformat.info/info/unicode/char/fe19) has charwidth 0 but Unicode width type W which may be of width 2
221. Codepoint [FE47(﹇)](http://www.fileformat.info/info/unicode/char/fe47) has charwidth 0 but Unicode width type W which may be of width 2
222. Codepoint [FE48(﹈)](http://www.fileformat.info/info/unicode/char/fe48) has charwidth 0 but Unicode width type W which may be of width 2
223. Codepoint [1B000(𛀀)](http://www.fileformat.info/info/unicode/char/1b000) has charwidth 0 but Unicode width type W which may be of width 2
224. Codepoint [1B001(𛀁)](http://www.fileformat.info/info/unicode/char/1b001) has charwidth 0 but Unicode width type W which may be of width 2
225. Codepoint [1F200(🈀)](http://www.fileformat.info/info/unicode/char/1f200) has charwidth 0 but Unicode width type W which may be of width 2
226. Codepoint [1F201(🈁)](http://www.fileformat.info/info/unicode/char/1f201) has charwidth 0 but Unicode width type W which may be of width 2
227. Codepoint [1F202(🈂)](http://www.fileformat.info/info/unicode/char/1f202) has charwidth 0 but Unicode width type W which may be of width 2
228. Codepoint [1F210(🈐)](http://www.fileformat.info/info/unicode/char/1f210) has charwidth 0 but Unicode width type W which may be of width 2
229. Codepoint [1F211(🈑)](http://www.fileformat.info/info/unicode/char/1f211) has charwidth 0 but Unicode width type W which may be of width 2
230. Codepoint [1F212(🈒)](http://www.fileformat.info/info/unicode/char/1f212) has charwidth 0 but Unicode width type W which may be of width 2
231. Codepoint [1F213(🈓)](http://www.fileformat.info/info/unicode/char/1f213) has charwidth 0 but Unicode width type W which may be of width 2
232. Codepoint [1F214(🈔)](http://www.fileformat.info/info/unicode/char/1f214) has charwidth 0 but Unicode width type W which may be of width 2
233. Codepoint [1F215(🈕)](http://www.fileformat.info/info/unicode/char/1f215) has charwidth 0 but Unicode width type W which may be of width 2
234. Codepoint [1F216(🈖)](http://www.fileformat.info/info/unicode/char/1f216) has charwidth 0 but Unicode width type W which may be of width 2
235. Codepoint [1F217(🈗)](http://www.fileformat.info/info/unicode/char/1f217) has charwidth 0 but Unicode width type W which may be of width 2
236. Codepoint [1F218(🈘)](http://www.fileformat.info/info/unicode/char/1f218) has charwidth 0 but Unicode width type W which may be of width 2
237. Codepoint [1F219(🈙)](http://www.fileformat.info/info/unicode/char/1f219) has charwidth 0 but Unicode width type W which may be of width 2
238. Codepoint [1F21A(🈚)](http://www.fileformat.info/info/unicode/char/1f21a) has charwidth 0 but Unicode width type W which may be of width 2
239. Codepoint [1F21B(🈛)](http://www.fileformat.info/info/unicode/char/1f21b) has charwidth 0 but Unicode width type W which may be of width 2
240. Codepoint [1F21C(🈜)](http://www.fileformat.info/info/unicode/char/1f21c) has charwidth 0 but Unicode width type W which may be of width 2
241. Codepoint [1F21D(🈝)](http://www.fileformat.info/info/unicode/char/1f21d) has charwidth 0 but Unicode width type W which may be of width 2
242. Codepoint [1F21E(🈞)](http://www.fileformat.info/info/unicode/char/1f21e) has charwidth 0 but Unicode width type W which may be of width 2
243. Codepoint [1F21F(🈟)](http://www.fileformat.info/info/unicode/char/1f21f) has charwidth 0 but Unicode width type W which may be of width 2
244. Codepoint [1F220(🈠)](http://www.fileformat.info/info/unicode/char/1f220) has charwidth 0 but Unicode width type W which may be of width 2
245. Codepoint [1F221(🈡)](http://www.fileformat.info/info/unicode/char/1f221) has charwidth 0 but Unicode width type W which may be of width 2
246. Codepoint [1F222(🈢)](http://www.fileformat.info/info/unicode/char/1f222) has charwidth 0 but Unicode width type W which may be of width 2
247. Codepoint [1F223(🈣)](http://www.fileformat.info/info/unicode/char/1f223) has charwidth 0 but Unicode width type W which may be of width 2
248. Codepoint [1F224(🈤)](http://www.fileformat.info/info/unicode/char/1f224) has charwidth 0 but Unicode width type W which may be of width 2
249. Codepoint [1F225(🈥)](http://www.fileformat.info/info/unicode/char/1f225) has charwidth 0 but Unicode width type W which may be of width 2
250. Codepoint [1F226(🈦)](http://www.fileformat.info/info/unicode/char/1f226) has charwidth 0 but Unicode width type W which may be of width 2
251. Codepoint [1F227(🈧)](http://www.fileformat.info/info/unicode/char/1f227) has charwidth 0 but Unicode width type W which may be of width 2
252. Codepoint [1F228(🈨)](http://www.fileformat.info/info/unicode/char/1f228) has charwidth 0 but Unicode width type W which may be of width 2
253. Codepoint [1F229(🈩)](http://www.fileformat.info/info/unicode/char/1f229) has charwidth 0 but Unicode width type W which may be of width 2
254. Codepoint [1F22A(🈪)](http://www.fileformat.info/info/unicode/char/1f22a) has charwidth 0 but Unicode width type W which may be of width 2
255. Codepoint [1F22B(🈫)](http://www.fileformat.info/info/unicode/char/1f22b) has charwidth 0 but Unicode width type W which may be of width 2
256. Codepoint [1F22C(🈬)](http://www.fileformat.info/info/unicode/char/1f22c) has charwidth 0 but Unicode width type W which may be of width 2
257. Codepoint [1F22D(🈭)](http://www.fileformat.info/info/unicode/char/1f22d) has charwidth 0 but Unicode width type W which may be of width 2
258. Codepoint [1F22E(🈮)](http://www.fileformat.info/info/unicode/char/1f22e) has charwidth 0 but Unicode width type W which may be of width 2
259. Codepoint [1F22F(🈯)](http://www.fileformat.info/info/unicode/char/1f22f) has charwidth 0 but Unicode width type W which may be of width 2
260. Codepoint [1F230(🈰)](http://www.fileformat.info/info/unicode/char/1f230) has charwidth 0 but Unicode width type W which may be of width 2
261. Codepoint [1F231(🈱)](http://www.fileformat.info/info/unicode/char/1f231) has charwidth 0 but Unicode width type W which may be of width 2
262. Codepoint [1F232(🈲)](http://www.fileformat.info/info/unicode/char/1f232) has charwidth 0 but Unicode width type W which may be of width 2
263. Codepoint [1F233(🈳)](http://www.fileformat.info/info/unicode/char/1f233) has charwidth 0 but Unicode width type W which may be of width 2
264. Codepoint [1F234(🈴)](http://www.fileformat.info/info/unicode/char/1f234) has charwidth 0 but Unicode width type W which may be of width 2
265. Codepoint [1F235(🈵)](http://www.fileformat.info/info/unicode/char/1f235) has charwidth 0 but Unicode width type W which may be of width 2
266. Codepoint [1F236(🈶)](http://www.fileformat.info/info/unicode/char/1f236) has charwidth 0 but Unicode width type W which may be of width 2
267. Codepoint [1F237(🈷)](http://www.fileformat.info/info/unicode/char/1f237) has charwidth 0 but Unicode width type W which may be of width 2
268. Codepoint [1F238(🈸)](http://www.fileformat.info/info/unicode/char/1f238) has charwidth 0 but Unicode width type W which may be of width 2
269. Codepoint [1F239(🈹)](http://www.fileformat.info/info/unicode/char/1f239) has charwidth 0 but Unicode width type W which may be of width 2
270. Codepoint [1F23A(🈺)](http://www.fileformat.info/info/unicode/char/1f23a) has charwidth 0 but Unicode width type W which may be of width 2
271. Codepoint [1F240(🉀)](http://www.fileformat.info/info/unicode/char/1f240) has charwidth 0 but Unicode width type W which may be of width 2
272. Codepoint [1F241(🉁)](http://www.fileformat.info/info/unicode/char/1f241) has charwidth 0 but Unicode width type W which may be of width 2
273. Codepoint [1F242(🉂)](http://www.fileformat.info/info/unicode/char/1f242) has charwidth 0 but Unicode width type W which may be of width 2
274. Codepoint [1F243(🉃)](http://www.fileformat.info/info/unicode/char/1f243) has charwidth 0 but Unicode width type W which may be of width 2
275. Codepoint [1F244(🉄)](http://www.fileformat.info/info/unicode/char/1f244) has charwidth 0 but Unicode width type W which may be of width 2
276. Codepoint [1F245(🉅)](http://www.fileformat.info/info/unicode/char/1f245) has charwidth 0 but Unicode width type W which may be of width 2
277. Codepoint [1F246(🉆)](http://www.fileformat.info/info/unicode/char/1f246) has charwidth 0 but Unicode width type W which may be of width 2
278. Codepoint [1F247(🉇)](http://www.fileformat.info/info/unicode/char/1f247) has charwidth 0 but Unicode width type W which may be of width 2
279. Codepoint [1F248(🉈)](http://www.fileformat.info/info/unicode/char/1f248) has charwidth 0 but Unicode width type W which may be of width 2
280. Codepoint [1F250(🉐)](http://www.fileformat.info/info/unicode/char/1f250) has charwidth 0 but Unicode width type W which may be of width 2
281. Codepoint [1F251(🉑)](http://www.fileformat.info/info/unicode/char/1f251) has charwidth 0 but Unicode width type W which may be of width 2