Guest User

Untitled

a guest
Jan 16th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <locale.h>
  3.  
  4. int main()
  5. {
  6. setlocale(LC_ALL, "");
  7.  
  8. for (int i = 0x2800; i < 0x2810; i++) {
  9. printf("0x%x - %lc\n", i, i);
  10. }
  11.  
  12. return 0;
  13. }
Add Comment
Please, Sign In to add comment