I want to render small single character images with ImageMagick.
I'm calling it like this:
echo -n "\u1407" | convert -background black -fill white \
-font /usr/share/fonts/truetype/dejavu/DejaVuSansMono.ttf
-pointsize 12 label:@- gif:1407.gif
When I just echo on my terminal, that has this font (DejaVu-Sans-Mono) set, I see this triangle: ᐇ but in the GIF is just a question mark. No special markings, just a question mark. It works for some other characters, like these special parens: ⟨⟩ at 27e8 and 27e9, but the next pair isn't working again.
What do I need to do to enable all characters that the font supplies? Did I set the wrong font?
My distribution is LMDE.

