Home > Mobile >  how to add icons in vs code itself
how to add icons in vs code itself

Time:11-28

enter image description here

in the picture next to column.isSortedDesc , "Down" and "up" arrows are typed in code itself in vscode editor how can we add icons like this in code it self

CodePudding user response:

Those are not icons but plain emojies, vscode has support for UNICODE emoji characters by default, you could just copy and paste emojies into code just like you do with text. Here is a full list of emojies for reference that you could use in your code: https://unicode.org/emoji/charts/full-emoji-list.html

  • Related