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