Skip to content
Snippets Groups Projects
Select Git revision
  • 7560cc4942f39553de76072a963e56c6ab8d38f9
  • 2024ws default
  • 2023ws
  • 2022ws
  • 2021ws
  • 2020ws
  • 2018ws
  • 2019ws
  • 2017ws
  • 2016ws
10 results

strings-23.c

Blame
  • strings-23.c 325 B
    #include <stdio.h>
    
    int main (void)
    {
      printf ("%08x\n", 'ä');  /* Der ausgegebene Zahlenwert ist _nicht_ der Unicode für 'ä', */
      return 0;                /* sondern die UTF-8-Kodierung für 'ä'.                        */
                               /* Für korrekte Handhabung von UTF-8: Bibliothek verwenden.    */
    }