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