8

Does anyone know of some project that makes emoji render as emoticons (:D) or text (:troll:)? I would find something like that useful because emoticons look better than emoji and many emoji are so obscure that I find myself pixel peeping when I try to comprehend what they are trying to represent. Sometimes there's no other way to find out what an emoji is supposed to represent than copy-pasting it to a search engine. Very convenient.

I'm interested if anyone knows how to achieve this on any platform.

Comments
  • 1
    A magnifying glass app might be helpful as well. Does zooming in make it bigger? I have the same issue as you. Sometimes I just cannot tell what it is.
  • 1
    In theory, Unicode lookup table.

    Unicode has a detailed explanation of all characters, so character lookup of Unicode sign plus outputting description.
  • 0
  • 0
    @IntrusionCM yeah but it would be best to do it system-wide. I don't really even know where I would start looking.
  • 0
    @Demolishun android has a magnifying glass feature built in, you can find it in the accessibility settings
  • 2
    @electrineer ugh.

    I'm not sure if a glyph has size constraint, but a font needs to map a unicode character to a glyph and thus it could be possible to create a font that displays instead of an graphical emoji an glyph containing the description.

    I guess that's the only sane (haha who am I kidding) way of creating a system wide working thingy.... As everything else should be entirely dependent on the corresponding software stack (e.g. Webbrowser showing text vs showing editable form etc.)
  • 1
    pip install emoji
    emoji.demojize
    ?
  • 1
    Not sure if it would work but maybe a custom font that renders text instead of emojis?
Add Comment