You are not logged in.
Some of the unicode characters are not displaying in the terminal basically on neovim and I also encountered these types of errors in notification area even sometime in the browsers some characters are not loading.
Then, I tried this command
FC_DEBUG=4 pango-view --font="sans" -t ? | grep family: After executing this command, a pop-up window of question mark appeared Another sample picture
what do I do to fix this issue??
I use **sans regular** as my default font and for the terminal I use ** Dejavu sans mono**.
Offline
That looks more like a locale issue,
localectl
locale
locale -aWhat's the utf-8 codepoint you're trying to display?
If you issued the literal "?" the pango-view result isn't surprising, that's supposed to be a non-functional utf-8 glyph (but the forum BBS sometimes eats them and replaces them w/ a question mark)
Offline
I tried above mentioned command these are the results
for
locale -aC
POSIX
en_US.utf8
for
localectlSystem Locale: LANG=C
VC Keymap: n/a
X11 Layout: n/a
for
localeLANG=C
LC_CTYPE="C"
LC_NUMERIC="C"
LC_TIME="C"
LC_COLLATE="C"
LC_MONETARY="C"
LC_MESSAGES="C"
LC_PAPER="C"
LC_NAME="C"
LC_ADDRESS="C"
LC_TELEPHONE="C"
LC_MEASUREMENT="C"
LC_IDENTIFICATION="C"
LC_ALL=
Offline
Well, fix it.
https://wiki.archlinux.org/title/Locale
Offline