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