Skip to content

Instantly share code, notes, and snippets.

@jpluimers
Created May 5, 2021 15:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jpluimers/05b6318759e764be3169c1d76c5f5628 to your computer and use it in GitHub Desktop.
Save jpluimers/05b6318759e764be3169c1d76c5f5628 to your computer and use it in GitHub Desktop.
a few Unicode code points that can be used for Ticks and Crosses; all are part of the Miscellaneous Symbols Block: https://www.fileformat.info/info/unicode/block/miscellaneous_symbols/list.htm
program UnicodeTicksAndCrosses;
// a few Unicode code points that can be used for Ticks and Crosses
// all are part of the Miscellaneous Symbols Block
// https://www.fileformat.info/info/unicode/block/miscellaneous_symbols/list.htm
var
Symbol: Char;
begin
Symbol := #$2611; // Unicode U+2611 ☑
Symbol := #$2713; // Unicode U+2713 ✓
Symbol := #$2714; // Unicode U+2714 ✔
Symbol := #$2612; // Unicode U+2612 ☒
Symbol := #$2610; // Unicode U+2610 ☐
Symbol := #$2716; // Unicode U+2716 ✖
Symbol := #$2717; // Unicode U+2717 ✗
Symbol := #$2718; // Unicode U+2718 ✘
Symbol := #$2715; // Unicode U+2715 ✕
end.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment