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