C:
char c = '\u0DAD';
printf("%c\n", c); // Output: ත
JavaScript:
const char = '\u0DAD';
console.log(char); // Output: ත
Java:
char c = '\u0DAD';
System.out.println(c); // Output: ත
JSON:
{"text": "\u0DAD"} // Value: ත
Python:
char = '\u0DAD'
print(char) # Output: ත
Perl:
my $char = "\x{0DAD}";
print $char; # Output: ත
PHP:
$char = "\x{0DAD}";
echo $char; // Output: ත
Ruby:
char = "\u{0DAD}"
puts char # Output: ත
Rust:
let c = '\u{DAD}';
println!("{}", c); // Output: ත
Go:
char := '\u0DAD'
fmt.Printf("%c\n", char) // Output: ත
CSS:
/* CSS content property */
.element::before {
content: "\000DAD"; /* Display: ත */
}
HTML Decimal:
<p>HTML decimal: ත</p> <!-- Display: ත -->
HTML Hexadecimal:
<p>HTML hex: ත</p> <!-- Display: ත -->
URL Encoding:
// ත URL encoding
https://unicodefinder.com/search.php?query=%E0%B6%AD
MD5:
22a18bfcf1f22ecee039d698443b1772
SHA1:
9808eb04810eb80eaa25457a8a09ab2b58bccff6
Base64:
4Lat