Reputation: 19
How do I write this ju “ᘔ” (U+1614) in LaTeX?
Upvotes: 1
Views: 361
Reputation: 38863
If you have a font which contains the symbol, you can directly use it with lua/xelatex
% !TeX TS-program = lualatex
\documentclass{article}
\usepackage{fontspec}
\setmainfont{Euphemia UCAS}
\begin{document}
ᘔ
\end{document}
To find out which font contains it, you can run albatross ᘔ
__ __ __
.---.-.| | |--.---.-.| |_.----.-----.-----.-----.
| _ || | _ | _ || _| _| _ |__ --|__ --|
|___._||__|_____|___._||____|__| |_____|_____|_____|
Unicode code point [1614] mapping to ᘔ
┌─────────────────────────────────────────────────────────────────────────────┐
│ Font name │
├─────────────────────────────────────────────────────────────────────────────┤
│ .LastResort │
├─────────────────────────────────────────────────────────────────────────────┤
│ Euphemia UCAS │
└─────────────────────────────────────────────────────────────────────────────┘
Upvotes: 3