Skip to content

Instantly share code, notes, and snippets.

@ufcpp
Created November 23, 2022 14:58
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 ufcpp/5d7692a3847dc19e76191024c4e5d93f to your computer and use it in GitHub Desktop.
Save ufcpp/5d7692a3847dc19e76191024c4e5d93f to your computer and use it in GitHub Desktop.
// Unicode 8.0
int ᏸ = 8; // U+13F8, Cherokee Small Letter Ye
// Unicode 9.0
int Ɪ = 9; // U+A7AE, Small Captital I
// Unicode 10.0
int ৼ = 10; // U+09FC, Bengali Letter Vedic Anusvara
// Unicode 11.0
int ՠ = 11; // U+0560, Armenian Small Letter Turned Ayb
// Unicode 12.0
int Ꞻ = 12; // U+A7BA, Latin Capital Letter Glottal A
// Unicode 13.0
int ഄ = 13; // U+0D04, Malayalam Letter Vedic Anusvara
// Unicode 14.0
int ౝ = 14; // U+0C5D, Telugu Letter Nakaara Pollu
interface ꞮIntValue
{
int Value{ get; }
}
class A : ꞮIntValue
{
public int Value { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment