Hi,
There is a lua function that takes either glyph name or id:
\directlua{fonts.otf.char("Aacute")}
\directlua{fonts.otf.char(193)}
Thanks, it works!
By
Michael
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass[ngerman]{article}
\usepackage{babel}
\usepackage{luaotfload}
\usepackage[EU2]{fontenc}
\usepackage{libertine}% 4.6.5b
\renewcommand\ttdefault{lmtt}
\usepackage{xunicode}
\begin{document}
\bigskip
{\Huge\libertineGlyph{Tux}}
\bigskip
{\Huge\fontfamily{fxl}\selectfont\directlua{fonts.otf.char("Tux")}
}
\end{document}