3

This question is related to the Wubi input method, but mostly related to computer fonts, so you don't need to know how to use Wubi to be able to answer.

Table of Contents

  1. The context
  2. The problem
  3. Further information
  4. The question

The context

I have found this repository in Github which contain some software for using Wubi, a shape-bsaed input method, in Windows. Within that repository, there's a file (archive) that list Chinese characters along with the Wubi components that are contained in those characters.

The following code block shows some lines from that file.

嘣   口山月月
垸   土宀二儿
蟋   虫丿米心
鄂   口口二阝

Below I provide an screenshot of those lines I shown above, for those users that might not have an approppiate font for the Chinese characters or the characters that show the Wubi components.

enter image description here

Sidenote: If you want to know more about Wubi, in this image you can see the components on each key in the keyboard.

The problem

When I open that file in my computer, there are some characters that are shown as unknown characters (i.e. a box with a code inside it). See screenshot below.

enter image description here

The lines that were shown in the screenshot above are shown in the code block below as text.

徭   彳爫󰅎山
孀   女󰀙木目
婆   氵󰅌又女
嘘   口󰅋七一
雏   ⺈彐亻󰁷

Further information

I collected the characters that were shown as unknown characters in the whole file. The following code block contain those unique characters.

󰀀󰀁󰀂󰀅󰀊󰀌󰀍󰀏󰀐󰀓󰀔󰀕󰀖󰀗󰀘󰀙����󰀜󰀝󰀞󰀟󰀠󰀢󰀣󰀤󰀥󰀦󰀧󰀩󰀪󰀫󰀬󰀯󰀱󰀵󰀷󰀸󰀹󰀺󰀼󰀽󰀾󰁀󰁁󰁃󰁅󰁈󰁉󰁊󰁋󰁌󰁎󰁏󰁐󰁑󰁒󰁓󰁕󰁖󰁗󰁘󰁚󰁜󰁝󰁠󰁡󰁢󰁣󰁤󰁥󰁦󰁧󰁪󰁫󰁬󰁭󰁯󰁲󰁴󰁶󰁷󰁸󰁺󰁻󰁾󰂃󰂞󰄃󰅂󰅅󰅆󰅇󰅊󰅋󰅌󰅍󰅎󰅏󰅑󰅗

The unknown characters shown in the code block above are sorted according to their hexadecimal values (aka Unicode code or U+hex). The minimum hexadecimal value is F0000 (i.e. its Unicode code is U+F0000) and the maximum is F0157 (i.e. its Unicode code is U+F0157).

According to this (archive) document published by the Unicode Consortium, U+F0000..U+FFFFD is a range in the Unicode Standard for private use. This means that these characters cannot be considered as standardized characters in Unicode itself.

I think that the developer that created that file used a custom font to show the Wubi components for those characters that didn't have an equivalent Unicode character outside of the range for private use. However, I don't know which font it could be. I think a possible way to know the font, would be to ask the developer via email. If anyone is aware of another method for finding out that font, please let me know.

The question

What font has glyphs for those unknown characters?

3
  • The released exe from the author displays the PUA characters correctly. It's too small to contain a Chinese font so I guess it's the default font on Windows.
    – lilysirius
    Commented Nov 1, 2022 at 4:13
  • I think it might be AR PL UKai CN or something similar (example on my computer).
    – Becky 李蓓
    Commented Nov 5, 2022 at 9:03
  • I doubt it is; the 心s are clearly different, aren't they. Too bad. It's a very attractive typeface.
    – Sanchuan
    Commented Nov 6, 2022 at 9:17

2 Answers 2

2

In the repository that you mentioned, there's a file (archive) called fonts.aardio. In the line 31 of that file, the following is mentioned

install(.(ctrl,pxSize) = 安装字体到参数指定的控件\n字体参考 https://github.com/yanhuacuo/qingg 进行了增删修改\n大部分字根已改为普通文本

The translation of the Chinese characters into English is

字体参考 https://github.com/yanhuacuo/qingg 进行了增删修改\n大部分字根已改为普通文本

Font reference https://github.com/yanhuacuo/qingg Added and deleted changes\n Most of the root characters have been changed to plain text

The repository whose URL was shown above contains a file called 98WB-2.otf (archive to download). If you download that file, and open the file using fontforge (see screenshot below), you'll notice that the font defines glyphs for the hexadecimal values that you mentioned.

screenshot of the software fontforge which confirms that the fonts indeed have glyphs for the characters that the original poster asked in this question

0

徭 彳爫 山

孀 is 女雨木目 https://zh.wikipedia.org/wiki/%E9%9B%A8

婆 is just three parts 氵皮女

嘘 is just three parts 口七一

雏 is just three parts ⺈彐亻 https://zh.wiktionary.org/wiki/%E2%BA%88

I accord to

http://www.wenqujingdian.com/Public/editor/attached/file/20180607/20180607180303_80199.pdf

2
  • This doesn't seem to answer the question, which is about which font is used, not what the components are.
    – Olle Linge
    Commented Nov 6, 2022 at 21:00
  • @Good-boy thanks for your explanation. As Ollie Linge mentioned, your reply doesn't answer the question. so it shouldn't have published as an answer. Commented Nov 7, 2022 at 0:11

Not the answer you're looking for? Browse other questions tagged or ask your own question.