I customized org-tag-alist
using the built-in customization interface. This stored the values in ("tag") . <ascii key value>)
pairs like this:
("ez" . 90)
("pin" . 73)
("per" . 61)
("inprog" . 78)
("maybe" . 66)
Is there any way to view this data with the ascii codes converted to characters, like this?
("ez" . ?Z)
("pin" . ?I)
("per" . ?=)
("inprog" . ?N)
("maybe" . ?B)