Skip to content

Instantly share code, notes, and snippets.

@gdetrez
Last active November 19, 2023 04:07
Show Gist options
  • Star 39 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save gdetrez/5845092 to your computer and use it in GitHub Desktop.
Save gdetrez/5845092 to your computer and use it in GitHub Desktop.
Powerine font test
#!/bin/bash
echo -e "Powerline glyphs:\n\
Code points Glyphe Description Old code point
U+E0A0 \xee\x82\xa0 Version control branch (U+2B60 \xe2\xad\xa0 )\n\
U+E0A1 \xee\x82\xa1 LN (line) symbol (U+2B61 \xe2\xad\xa1 )\n\
U+E0A2 \xee\x82\xa2 Closed padlock (U+2B64 \xe2\xad\xa4 )\n\
U+E0B0 \xee\x82\xb0 Rightwards black arrowhead (U+2B80 \xe2\xae\x80 )\n\
U+E0B1 \xee\x82\xb1 Rightwards arrowhead (U+2B81 \xe2\xae\x81 )\n\
U+E0B2 \xee\x82\xb2 Leftwards black arrowhead (U+2B82 \xe2\xae\x82 )\n\
U+E0B3 \xee\x82\xb3 Leftwards arrowhead (U+2B83 \xe2\xae\x83 )\n\
"
@asd142513
Copy link

asd142513 commented Sep 22, 2021

# For Powershell
echo "Powerline glyphs:
Code points Glyphe  Description
`u{E0A0}      Version control branch
`u{E0A1}      LN (line) symbol
`u{E0A2}      Closed padlock
`u{E0B0}      Rightwards black arrowhead
`u{E0B1}      Rightwards arrowhead
`u{E0B2}      Leftwards black arrowhead
`u{E0B3}      Leftwards arrowhead
"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment