I'm haveinghaving troubles using unicode characters U+023A and U+A7CC.
\documentclass[12pt,a4paper]{report} \usepackage[italian]{babel} \usepackage{fontspec} \usepackage[T1]{fontenc} \usepackage[utf8]{inputenc} \renewcommand{\baselinestretch}{1.5} \setmainfont{EB Garamond} %\setmainfont{Times New Roman} \ExplSyntaxOn \NewExpandableDocumentCommand{\uni}{O{12}m} { \char_generate:nn { \int_from_hex:n { #2 } } { #1 } } \ExplSyntaxOff \begin{document} \uni{338S} \uni{023A} \end{document} I'm using LuaLaTex compiler and some suggetionssuggestions in some other answers. The suggestions that I fund worksfound work well for the first symbol but the second does not appear in the pdf. What is the standard clean way to insert such symbols in the text?
In particular I would like to write in Times New Roman.
Any suggestion will be very appreciated!
Vanja