#include <stdio.h>// test
#include <locale.h>

int	main(void)
{
  setlocale(LC_ALL, "");
  printf("%lc\n", L'€');
  return (0);
}