need help using unicode in c++ console application

hi all :)
this is my first post in here and perhaps it will sound quite noobish but i hope you can help me out a bit :)

let's assume i want to create a very basic c++ program, and i want to use unicode in it.

For example like this:

1
2
3
4
5
6
7
8
9
#include <iostream>

using namespace std;

int main(void)
  {
  cout << "Þ þ Ð";
  return 1;
  }


info about some of these:
http://en.wikipedia.org/wiki/Thorn_letter

the compiled version won't give me these things letters

any ideas on how to convert that ? :)

nobody knows any advice concerning this problem ? :(

didn't thought it would be 'that' difficult :(
Topic archived. No new replies allowed.