3

Ubuntu comes pre-installed with an application called "Character Map". In the terminal, it can be launched as "charmap".

What is this application typically used for? What function does it provide people that Ubuntu sees as so necessary as to include by default in their distribution?

Anon
  • 12,339

1 Answers1

3

charmap (/usr/bin/charmap) is a symbolic link to gucharmap (/usr/bin/gucharmap); see the output of ls -al $(which charmap) in this sense. To understand what is its use, just read its manual page by running man gucharmap (or simple man charmap) command in your terminal. You will find out that:

gucharmap  allows you to browse through all the available Unicode char‐
acters and categories for the installed fonts,  and  to  examine  their
detailed properties.
Radu Rădeanu
  • 174,089
  • 51
  • 332
  • 407