I would like to print either crossmark (✕) or right (check) symbol (✓) in TCL
either using echo or puts.
Is there anyway to do it?
On the Home tab, in the Font section, click the Font drop-down list and select the Wingdings font. Create a check mark symbol by pressing and holding Alt , and then typing 0252 using the numeric keypad on the right side of the keyboard.
U+2713 ✓ CHECK MARK.
\times is the cross product command in LaTeX.
Use their unicode escape sequences:
puts \u2713 ;# check mark
puts \u2717 ;# cross mark
There are several different cross marks you can use:
✗ = \u2717 BALLOT X
✘ = \u2718 HEAVY BALLOT X
❌ = \u274c CROSS MARK
× = \u00D7 MULTIPLICATION SIGN
╳ = \u2573 BOX DRAWINGS LIGHT DIAGONAL CROSS
☓ = \u2613 SALTIRE (St. Andrew's Cross)
✕ = \u2715 MULTIPLICATION X
✖ = \u2716 HEAVY MULTIPLICATION X
⨉ = \u2A09 N-ARY TIMES OPERATOR
There are also several alternatives for check marks:
✓ = \u2713 CHECK MARK
✔ = \u2714 HEAVY CHECK MARK
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With