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