Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to print cross mark (✕) or check mark ✓ in TCL

Tags:

tcl

I would like to print either crossmark () or right (check) symbol () in TCL either using echo or puts.

Is there anyway to do it?

like image 708
boppu Avatar asked Aug 04 '16 07:08

boppu


People also ask

How do I print a check symbol?

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.

How do I type a check mark in Unicode?

U+2713 ✓ CHECK MARK.

How do I make a cross mark in LaTeX?

\times is the cross product command in LaTeX.


1 Answers

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
like image 87
slebetman Avatar answered Sep 23 '22 15:09

slebetman