C:
char c = '\u0BAE';
printf("%c\n", c); // Output: ம
JavaScript:
const char = '\u0BAE';
console.log(char); // Output: ம
Java:
char c = '\u0BAE';
System.out.println(c); // Output: ம
JSON:
{"text": "\u0BAE"} // Value: ம
Python:
char = '\u0BAE'
print(char) # Output: ம
Perl:
my $char = "\x{0BAE}";
print $char; # Output: ம
PHP:
$char = "\x{0BAE}";
echo $char; // Output: ம
Ruby:
char = "\u{0BAE}"
puts char # Output: ம
Rust:
let c = '\u{BAE}';
println!("{}", c); // Output: ம
Go:
char := '\u0BAE'
fmt.Printf("%c\n", char) // Output: ம
CSS:
/* CSS content property */
.element::before {
content: "\000BAE"; /* 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%AE%AE
MD5:
125eb6a64d37d28ab1964766bf954e46
SHA1:
c1a64abf7c0d9e3ae5d06d6681a7874baa8e0013
Base64:
4K6u