Search code examples
pythonunicode

Print the "approval" sign/check mark (✓) U+2713 in Python


How can I print the check mark sign "✓" in Python?

It's the sign for approval, not a square root.


Solution

  • You can print any Unicode character using an escape sequence. Make sure to make a Unicode string.

    print u'\u2713'