Igbo Counting System Icon Generator
Create custom hand emoji icons for the Igbo finger counting system
How to Use:
1. Click any emoji below to copy it to clipboard
2. Use “Download as PNG” to save the image
3. Copy the HTML/CSS code for your website
Hand Emoji Set
Click to copy, or use the download buttons
Right: <span class=”flipped”>☝</span>
Right: <span class=”flipped”>✌</span>
Right: <span class=”flipped”>🤟</span>
Right: <span class=”flipped”>🖖</span>
Right: <span class=”flipped”>🖐</span>
Right: <span class=”flipped”>✊</span>
Complete Counting System
Igbo numbers 1-10 with hand icons:
<span class=”igbo-number”>
<span class=”hand-left”>🖐️</span>
<span class=”hand-right”>☝️</span>
<span class=”number-text”>Isii (6)</span>
</span>
<style>
.hand-right { display: inline-block; transform: scaleX(-1); }
.igbo-number { font-size: 24px; }
</style>
For Your Dictionary PHP File:
<?php
// Igbo dictionary with emoji icons
$dictionary = [
[‘igbo’ => ‘<span class=”igbo-hand”>☝️</span> Otu’,
‘english’ => ‘<span class=”igbo-hand”>☝️</span> One’,
‘category’ => ‘Numbers’],
[‘igbo’ => ‘<span class=”igbo-hand”>✌️</span> Abuọ’,
‘english’ => ‘<span class=”igbo-hand”>✌️</span> Two’,
‘category’ => ‘Numbers’],
// … more entries
];
?>
