Bash get unicode character from encoded char

Reply to comment

It's also possible to get the unicode sequence on the command line using python:

$ echo -n "✓" | python -c 'import sys; print [sys.stdin.read()]'

['\xe2\x9c\x93']