Skip to content

Instantly share code, notes, and snippets.

@ashbeats
Last active June 22, 2018 22:00
Show Gist options
  • Save ashbeats/655609aa7543c88223859391e0b2a8b6 to your computer and use it in GitHub Desktop.
Save ashbeats/655609aa7543c88223859391e0b2a8b6 to your computer and use it in GitHub Desktop.
Simple-unicode-zoom-test
<?php
function tamil_consonant()
{
$consonants = [
["Sound" => "AK", "hex" => "0B83", "text" => "ஃ"],
["Sound" => "KA", "hex" => "0B95", "text" => "க"],
["Sound" => "NGA", "hex" => "0B99", "text" => "ங"],
["Sound" => "CA", "hex" => "0B9A", "text" => "ச"],
["Sound" => "JA", "hex" => "0B9C", "text" => "ஜ"],
["Sound" => "NYA", "hex" => "0B9E", "text" => "ஞ"],
["Sound" => "TTA", "hex" => "0B9F", "text" => "ட"],
["Sound" => "NNA", "hex" => "0BA3", "text" => "ண"],
["Sound" => "TA", "hex" => "0BA4", "text" => "த"],
["Sound" => "NA", "hex" => "0BA8", "text" => "ந"],
["Sound" => "NNNA", "hex" => "0BA9", "text" => "ன"],
["Sound" => "PA", "hex" => "0BAA", "text" => "ப"],
["Sound" => "MA", "hex" => "0BAE", "text" => "ம"],
["Sound" => "YA", "hex" => "0BAF", "text" => "ய"],
["Sound" => "RA", "hex" => "0BB0", "text" => "ர"],
["Sound" => "RRA", "hex" => "0BB1", "text" => "ற"],
["Sound" => "LA", "hex" => "0BB2", "text" => "ல"],
["Sound" => "LLA", "hex" => "0BB3", "text" => "ள"],
["Sound" => "LLLA", "hex" => "0BB4", "text" => "ழ"],
["Sound" => "VA", "hex" => "0BB5", "text" => "வ"],
["Sound" => "SHA", "hex" => "0BB6", "text" => "ஶ"],
["Sound" => "SSA", "hex" => "0BB7", "text" => "ஷ"],
["Sound" => "SA", "hex" => "0BB8", "text" => "ஸ"],
["Sound" => "HA", "hex" => "0BB9", "text" => "ஹ"]
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment