# Executing special keys Vim's `:exe[cute]` will read special keys when they're escaped in double quotes: ```vim exe "normal! i\u049c\u03b1\u03c4\u212f!\" " Writes Ҝατℯ ``` You can use this to quickly script difficult macros, like the one above ``` :exe "normal! i\u049c\u03b1\u03c4\u212f!\" ``` # Effective Unicode in vim ``` Demo unicodes: │┌┴─┐ ``` Use `ga` in vim to display encoding information about the character under the cursor. We'll use the hex value. In insert mode use `u` followed by the hex number to type in Unicode literally. The above can be written with ``` :normal! iu2502u250cu2500u2510 ```