Skip to content

Emoji and Icon Search

  • For finding emojis, emojipedia is convenient.
  • On Windows, you can also use the emoji input menu that appears with Win+..

Sample Code

# include <Siv3D.hpp>

void Main()
{
	Scene::SetBackground(ColorF{ 0.92 });

	// Emoji
	const Texture t1{ U"🍔"_emoji };

	// Icon
	const Texture t2{ 0xF0431_icon, 80 };

	while (System::Update())
	{
		t1.drawAt(300, 300);

		t2.drawAt(500, 300, ColorF{ 0.25 });

		SimpleGUI::Button(U"\U000F0493", Vec2{ 40, 40 });
	}
}