₩ is the currency symbol for North Korea. Its Unicode code-point is U+20a9.
In insert mode, I can press Ctrl–V u20a9 to type it.
If I only know its UTF-8 form e2 82 a9, how can I type it easily?
₩ is the currency symbol for North Korea. Its Unicode code-point is U+20a9 .
Share
Same solution with a twist of automation to help remember it:
Now you can
:UTF8 e2 82 a9You can also type this particular character with
<C-k>W=. See:help digraph-table-mbyte.Note that you can also get information about a character with
gaandg8in normal mode. So it might be easier to just do<C-r>="\xe2\x82\xa9"once and then dogato get the code-point.