Skip to content

Instantly share code, notes, and snippets.

@k-128
Created February 25, 2023 17:51
Show Gist options
  • Save k-128/dca5e86d65d5b78672e90cd8128a7ead to your computer and use it in GitHub Desktop.
Save k-128/dca5e86d65d5b78672e90cd8128a7ead to your computer and use it in GitHub Desktop.
Hexadecimal values of ASCII characters
constexpr std::string_view kAsciiHexValue =
// 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 // 000
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" // 015
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" // 031
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" // 047
// 48:0 57:9 // 0:9
"\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x00\x00\x00\x00\x00\x00" // 063
// 65:A 70:F // A:F
"\x00\x0A\x0B\x0C\x0D\x0E\x0F\x00\x00\x00\x00\x00\x00\x00\x00\x00" // 079
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" // 095
// 97:a 102:f // a:f
"\x00\x0A\x0B\x0C\x0D\x0E\x0F\x00\x00\x00\x00\x00\x00\x00\x00\x00" // 112
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"; // 127
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment