logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

jgmenuunicode - An overview of jgmenu unicode usage

Authors

       Johan Malm.

                                                 7 October, 2020                                JGMENUUNICODE(7)

Introduction

       Unicode characters can be displayed by jgmenu.  They can be used in:

       • CSV data
       • Widgets
       • Config file

       Throughout  this  document, unicode code points will be referred to by writing u+ followed by their hexa‐
       decimal number.  In examples, u+1234 will be used.

Name

       jgmenuunicode - An overview of jgmenu unicode usage

Unicode Characters In Terminal

       Terminals handle unicode differently.  For full support, avoid xterm and urxvt,  and  opt  for  something
       libvte based such as sakura or gnome-terminal.  In a terminal, you can produce a unicode character by is‐
       suing

              printf '%b' '\\u1234'

       In libvte terminals, you can press ctrl+shift+u and then enter the hex sequence.

Unicode Characters In Vim

       Whilst in insert mode, press ctrl+V and then type u1234.

       Use the command ga to show the hex value of the character under the cursor.

Variation Selectors

       Some  unicode  characters  can be rendered as either emoji or text.  Special invisible unicode characters
       called variation selectors can be used to force either presentation.  Append with the  text  presentation
       selector  (u+fe0e) or emoji presentation selector (u+fe0f), to force text or emoji respectively.  For ex‐
       ample:

       u+1f50d u+fe0f 🔍
       u+1f50d u+fe0e 🔍︎

See Also