I've looked everywhere for an answer to this question, but none could answer this specific one:
I have MinionMath font (from typoma.com, MinionMath-Regular.otf) and I want to use unicode f3a0f (under "Supplementary Private Use Area-A") but I have no idea how to get it using LuaLaTeX. I can't just use \symbol{"f3a0f} as that doesn't work... Not sure what to do.
This is a pdf file that has all the symbols. I want to use symbol f3a0f (top right of page 19) specifically (and yes, I'm aware it looks similar to |, but I want to use this particular one). I did take a look at this question but for some reason there just is no temp-minionmath file at all in the .log file. I have also looked at a number of other questions but they don't seem to work :(
I need to use LuaLaTeX only, I know how to do this in XeTeX, but I absolutely 100% need it in LuaLaTeX unfortunately. Any help would be appreciated.
Edit: Here is some "compilable" code (This is a pretty basic question so really I want to be able to use this symbol with this code as a bare minimum...)
\documentclass{article}
\usepackage{unicode-math}
\setmathfont{MinionMath-Regular.otf}
\begin{document}
\[\]
\end{document}
EDIT 2: It now appears I have located the MinionMath-Regular.lua file after all thanks to @UlrikeFischer 's comment, and when I find the corresponding symbol number for F3A0F (\symbol{983854}) and type that into the file / compile with LuaLaTeX, that indeed works. Now I guess the question is, how come a simpler method such as \char{"F3A0F} or ^^^^^f3a0f doesn't work with LuaLaTeX, when it should? I'd rather not have to search through the .lua file for a corresponding symbol number each time.
\symbol{983854}) and it works when written into LuaLaTeX! I can't believe I didn't try this before, thank you! Now I just wish there was some easier way for me to do this without having to look for the symbol in this file... Ah well. – airatin Nov 21 '14 at 11:51