I have in my .emacs
:
(when (>= emacs-major-version 23)
(define-key global-map "\C-x8g" (lambda nil (interactive) (ucs-insert `,(cdr (assoc-string "HRYVNIA SIGN" (ucs-names) t)))))
(define-key global-map "\C-x8e" (lambda nil (interactive) (ucs-insert `,(cdr (assoc-string "EURO SIGN" (ucs-names) t)))))
)
and with Cygwin Emacs-w32 v26 for:
(assoc-string "EURO SIGN" (ucs-names) t)
I get nil
. Is it a bug? How can I get character by Unicode symbol name compatible with Emacs 24/25/26?