C:
char c = '\u0C47';
printf("%c\n", c); // Output: ే
JavaScript:
const char = '\u0C47';
console.log(char); // Output: ే
Java:
char c = '\u0C47';
System.out.println(c); // Output: ే
JSON:
{"text": "\u0C47"} // Value: ే
Python:
char = '\u0C47'
print(char) # Output: ే
Perl:
my $char = "\x{0C47}";
print $char; # Output: ే
PHP:
$char = "\x{0C47}";
echo $char; // Output: ే
Ruby:
char = "\u{0C47}"
puts char # Output: ే
Rust:
let c = '\u{C47}';
println!("{}", c); // Output: ే
Go:
char := '\u0C47'
fmt.Printf("%c\n", char) // Output: ే
CSS:
/* CSS content property */
.element::before {
content: "\000C47"; /* 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%B1%87
MD5:
322873364ad8d114cc031d6efd4cb694
SHA1:
30dde09620411ebddbba5c41ba16e9c56ae46cea
Base64:
4LGH