Skip to content

Instantly share code, notes, and snippets.

@PaulChana
Last active April 10, 2018 08:14
Show Gist options
  • Save PaulChana/b6f59e113e15321f722341be1bdb960a to your computer and use it in GitHub Desktop.
Save PaulChana/b6f59e113e15321f722341be1bdb960a to your computer and use it in GitHub Desktop.
[Print emoji] Print an emoji in terminal #emoji #cpp #terminal
#include <iostream>
#include <string>
int main()
{
// Here are some emojis...
// https://apps.timwhitlock.info/emoji/tables/unicode
std::string bee = "\U0001F41D"; // Remember this must be 8 bytes total
std::cout << "To " + bee + " or not to " + bee + " that is the " + question<< std::endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment